93 lines
2.0 KiB
PHP
93 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Obtained;
|
|
use App\Models\Service;
|
|
use App\Models\ServiceCategory;
|
|
use App\Models\ServiceObtained;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ServiceController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index()
|
|
{
|
|
$serviceCategories = ServiceCategory::get();
|
|
return view('frontend.service.index', compact('serviceCategories'));
|
|
}
|
|
|
|
/**
|
|
* 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\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show($serviceCategory)
|
|
{
|
|
$services = Service::where(['name' => $serviceCategory])->get();
|
|
$ser = Service::where(['name' => $serviceCategory])->get()->first();
|
|
|
|
return view('frontend.service.detail', compact('services', 'ser'));
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Models\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(Service $service)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \App\Models\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(Request $request, Service $service)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Models\Service $service
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(Service $service)
|
|
{
|
|
//
|
|
}
|
|
}
|