@extends('admin.layouts.app') @section('title') @lang('Service Show') @endsection @section('content')
@foreach($categories as $key => $category)
@foreach($category->service as $service) @endforeach
@lang('ID') @lang('Name') @lang('Provider') @lang('Drip-Feed') @lang('Status') @lang('Action')
@lang($service->id) {{\Str::limit($service->service_title, 30)}} {{ optional($service->provider)->api_name ?? 'N/A' }} {{ $service->drip_feed == 0 ? 'Inactive' : 'Active' }} {{ $service->service_status == 0 ? 'Inactive' : 'Active' }} @if($service->service_status == 0) @else @endif
@endforeach
@if($categories->total() > config('basic.paginate'))
{{ $categories->links() }}
@endif @endsection @push('js') @endpush