@extends('layouts.app') @section('content') @include('layouts.top-header', [ 'title' => __('Service'), 'class' => 'col-lg-7' ])
{{__('Services table')}}
@if (count($services) != 0) @foreach ($services as $key => $service) @endforeach @else @endif
{{__('#')}} {{__('Image')}} {{__('Name')}} {{__('Category')}} {{__('Time')}} {{__('Price')}} {{__('Status')}}
{{$services->firstItem() + $key}} {{$service->name}} {{$service->category->name}} {{$service->time}} {{__('Min')}} {{$symbol}}{{$service->price}} @php $base_url = url('/'); @endphp
{{__('No Services')}}
{{ $services->links("pagination::bootstrap-4") }}
@include('owner.service.create') @include('owner.service.show') @include('owner.service.edit') @endsection