App\Http\Controllers\ClientsController::show PHP Метод

show() публичный Метод

Display the specified resource.
public show ( integer $id ) : Response
$id integer
Результат Response
    public function show($id)
    {
        return view('clients.show')->withClient($this->clients->find($id))->withCompanyname($this->settings->getCompanyName())->withInvoices($this->clients->getInvoices($id));
    }