@extends('layouts.backend.app') @section('head') @include('layouts.backend.partials.headersection',['title'=>'Manage Services']) @endsection @section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
@foreach($services as $service) @php $info = json_decode($service->serviceMeta->value); @endphp @endforeach
{{ __('Title') }} {{ __('Image') }} {{ __('Created At') }} {{ __('Status') }} {{ __('Action') }}
{{ $service->title }} {{ $info->image }} {{ date('d-m-Y', strtotime($service->created_at)) }} {{ $service->status == 0 ? 'Inactive' : 'Active' }}
{{ $services->links('vendor.pagination.bootstrap-4') }}
@endsection @push('js') @endpush