App\Http\Controllers\AuthorsController::index PHP Méthode

index() public méthode

public index ( )
    public function index()
    {
        $authors = Author::all();
        if (Request::wantsJson()) {
            return $authors;
        }
        return view('authors.index', compact('authors'));
    }