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

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

Display the specified resource.
public show ( integer $id ) : Illuminate\Http\Response
$id integer
Результат Illuminate\Http\Response
    public function show($id)
    {
        return view('leads.show')->withLeads($this->leads->find($id))->withUsers($this->users->getAllUsersWithDepartments())->withCompanyname($this->settings->getCompanyName());
    }