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

@lang('No Data Found!')

@endforelse
@endsection @push('js-lib') @endpush @push('js') @endpush