App\Http\Controllers\Back\FragmentsController::index PHP Method

index() public method

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