86 lines
2.2 KiB
PHP
86 lines
2.2 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Admin\Http\Controllers;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use Illuminate\Http\RedirectResponse;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Http\Response;
|
||
|
use Modules\Admin\Repositories\AppreciationRepository;
|
||
|
|
||
|
class AppreciationController extends Controller
|
||
|
{
|
||
|
private $appreciationRepository;
|
||
|
|
||
|
public function __construct(AppreciationRepository $appreciationRepository)
|
||
|
{
|
||
|
$this->appreciationRepository = $appreciationRepository;
|
||
|
}
|
||
|
/**
|
||
|
* Display a listing of the resource.
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
$data['title'] = "Appreciation Lists";
|
||
|
$data['appreciationLists'] = $this->appreciationRepository->findAll();
|
||
|
return view('admin::appreciations.index', $data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Show the form for creating a new resource.
|
||
|
*/
|
||
|
public function create()
|
||
|
{
|
||
|
$data['title'] = "Create Appreciation";
|
||
|
$data['editable'] = false;
|
||
|
return view('admin::appreciations.create', $data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Store a newly created resource in storage.
|
||
|
*/
|
||
|
public function store(Request $request): RedirectResponse
|
||
|
{
|
||
|
$this->appreciationRepository->create($request->all());
|
||
|
toastr()->success('Appreciation Created Successfully.');
|
||
|
return redirect()->route('appreciation.index');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Show the specified resource.
|
||
|
*/
|
||
|
public function show($id)
|
||
|
{
|
||
|
return view('admin::appreciations.show');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Show the form for editing the specified resource.
|
||
|
*/
|
||
|
public function edit($id)
|
||
|
{
|
||
|
$data['title'] = "Edit Appreciation";
|
||
|
$data['editable'] = true;
|
||
|
$data['appreciation'] = $this->appreciationRepository->getAppreciationById($id);
|
||
|
return view('admin::appreciations.edit', $data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Update the specified resource in storage.
|
||
|
*/
|
||
|
public function update(Request $request, $id): RedirectResponse
|
||
|
{
|
||
|
$this->appreciationRepository->update($id, $request->all());
|
||
|
toastr()->success('Appreciation Updated Successfully.');
|
||
|
return redirect()->route('appreciation.index');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Remove the specified resource from storage.
|
||
|
*/
|
||
|
public function destroy($id)
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|