@extends('admin.layouts.master') @section('title', 'Service Category') @section('content')

{{ __('Service Category') }}

{{ __('Service Category') }}

@foreach ($services as $id => $service) @endforeach
{{ __('#') }} {{ __('Name') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$id }} {{ $service->name }} @if ($service->status == 'publish') Published @elseif($service->status == 'draft') Draft @endif {{ __('Edit') }}
@csrf
@endsection