TIF_E41201544/app/Http/Controllers/Admin/HistoryController.php

94 lines
1.9 KiB
PHP

<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use App\Models\History;
use Illuminate\Http\Request;
class HistoryController extends Controller
{
public function __construct()
{
$this->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)
{
//
}
}