109 lines
3.0 KiB
PHP
109 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Models\Service;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Admin\StoreServiceRequest;
|
|
use App\Http\Requests\Admin\UpdateServiceRequest;
|
|
use App\Models\Obtained;
|
|
use App\Models\ServiceCategory;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ServiceController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index()
|
|
{
|
|
$services = Service::paginate(5);
|
|
|
|
return view('admin.services.index', compact('services'));
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function create()
|
|
{
|
|
$obtaineds = Obtained::pluck('name', 'id');
|
|
$serviceCategories = ServiceCategory::get();
|
|
|
|
return view('admin.services.create', compact('obtaineds', 'serviceCategories'));
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(StoreServiceRequest $request)
|
|
{
|
|
$service = Service::create($request->validated());
|
|
$service->obtaineds()->sync($request->input('obtaineds'));
|
|
|
|
return redirect()->route('admin.service.index')->with('message', "Service Successfully Created !");
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \App\Models\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(Service $service)
|
|
{
|
|
return redirect()->route('admin.service.index');
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Models\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(Service $service)
|
|
{
|
|
$obtaineds = Obtained::pluck('name', 'id');
|
|
$serviceCategories = ServiceCategory::get();
|
|
|
|
return view('admin.services.edit', compact('service', 'obtaineds', 'serviceCategories'));
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \App\Models\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(UpdateServiceRequest $request, Service $service)
|
|
{
|
|
$service->update($request->validated());
|
|
$service->obtaineds()->sync($request->input('obtaineds'));
|
|
|
|
return redirect()->route('admin.service.index')->with('message', "Service Successfully Updated !");
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Models\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(Service $service)
|
|
{
|
|
$service->delete();
|
|
|
|
return redirect()->route('admin.service.index')->with('message', "Service Successfully Deleted !");
|
|
}
|
|
}
|