Rubenwouters\CrmLauncher\Controllers\CasesController::index PHP Метод

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

Shows cases overview
public index ( ) : view
Результат view
    public function index()
    {
        $secondsAgo = $this->log->secondsAgo('fetching');
        if (!$secondsAgo) {
            $this->initIds();
        }
        $cases = $this->case->visibleCases();
        return view('crm-launcher::cases.index')->with('cases', $cases);
    }