middleware('role:admin'); } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $histories = History::with('user', 'addiction') ->orderBy('created_at', 'desc') ->get(); return view('admin.histories.index', compact('histories')); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { // } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param \App\Models\History $history * @return \Illuminate\Http\Response */ public function show(History $history) { // } /** * Show the form for editing the specified resource. * * @param \App\Models\History $history * @return \Illuminate\Http\Response */ public function edit(History $history) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\History $history * @return \Illuminate\Http\Response */ public function update(Request $request, History $history) { // } /** * Remove the specified resource from storage. * * @param \App\Models\History $history * @return \Illuminate\Http\Response */ public function destroy(History $history) { // } }