@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')
Service

Service List

@foreach ($Service as $ser) {{-- --}} @endforeach
S.No Service Provider Name Service Name Town Name Service Rise Date Status View Service
{{ $loop->index+1 }} {{ $ser->user->full_name }} {{ $ser->title }} @if($ser->user->towns){{ $ser->user->towns->name }}@endif {{ date('Y-m-d',strtotime($ser->created_at)) }} @if ($ser->status == 0) @endif @if ($ser->status == 1) @endif @if ($ser->status == 2) @endif View {{-- --}} {{-- --}}
@endsection @section('scripts') @endsection