@extends('admin.layouts.master')
@section('title', 'Service')
@section('content')
{{ __('#') }} |
{{ __('Icon') }} |
{{ __('Name') }} |
{{ __('Status') }} |
{{ __('Order No') }} |
{{ __('Action') }} |
@foreach ($services as $id => $service)
{{ ++$id }}
|
|
{{ $service->name }}
|
@if ($service->status == 'publish')
Published
@elseif($service->status == 'draft')
Draft
@endif
|
{{ $service->order_no }}
|
|
@endforeach
@endsection