[PROMOÇÃO] Assine com + 30% de desconto ANUAL MENSAL (últimas horas)
Valdson Barbosa de Oliveira
Criador Valdson Barbosa de Oliveira 10/01/2022
Estou passando no Postman: http://food.test/api/categories?uuid=b9172fbe-995e-4059-8c4b-67abdeaff1c6
 
e me retorna:
 
<!-- Undefined property: App\Repositories\TenantRepository::$getTenantByUuid (500 Internal Server Error) -->
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta name="robots" content="noindex,nofollow" />
    <meta name="viewport" content="width=device-width,initial-scale=1" />
    <title>Undefined property: App\Repositories\TenantRepository::$getTenantByUuid (500 Internal Server Error)</title>
    <link rel="icon" type="image/png"
 
 
no TenantRepository.php
<?php

namespace App\Repositories;

use App\Models\Tenant;
use App\Repositories\Contracts\TenantRepositoryInterface;

class TenantRepository implements TenantRepositoryInterface
{
    protected $entity;

    public function __construct(Tenant $tenant)
    {
        $this->entity = $tenant;
    }

    public function getAllTenants(int $per_page)
    {
        return  $this->entity->paginate($per_page);
    }
    public function getTenantByUuid(string $uuid)
    {
        return $this->entity->where('uuid', $uuid)->first();
    }
}
Manager Carlos Ferreira 10/01/2022

Olá, Valdson!
Tudo bem?

Você tem o seu projeto no GitHub?
Preciso ter uma visão geral dele para conseguir te ajudar a identificar onde errou.

Acredito que onde usa o TenantRepository você não passou o UUID

No aguardo do código completo.

Carlos Ferreira
Criador Valdson Barbosa de Oliveira 10/01/2022

resolvido. faltou colocar o uuid. Obrigado

Valdson Barbosa de Oliveira
Sabe a Solução? Ajude a resolver!

Precisa estar logado para conseguir responder a este ticket!

Clique Aqui Para Entrar!