@extends('admin.layouts.app') @section('page_title', __('Manage Service')) @section('content')
|
@lang('ID') | @lang('Name') | @lang('Provider') | @lang('Price') | @lang('Drip Feed') | @lang('Status') | @lang('Action') |
---|---|---|---|---|---|---|---|
{{ $service->id }} | @lang(Str::limit($service->service_title, 100)) | {{ optional($service->provider)->api_name ?? 'Manual' }} | {{ currencyPosition($service->price) }} | {{ $service->drip_feed == 1 ? 'Active' : 'Inactive' }} | {{ $service->service_status == 1 ? 'Active' : 'Inactive' }} |
@lang("No data to show")