App\Http\Controllers\Back\FragmentsController::index PHP 메소드

index() 공개 메소드

public index ( )
    public function index()
    {
        $fragments = Fragment::where('hidden', false)->get();
        return view('back.fragments.index')->with(compact('fragments'));
    }