@extends('admin.layouts.master')
@section('title', 'List of Units')
@section('content')
| Serial # |
Customer |
Status |
Created at |
Action |
@foreach ($units as $id => $unit)
| {{ ++$id }} |
{{$unit->name}} |
@if($unit->status == 1)
Published
@else
Un-Published
@endif
|
{{ \Carbon\Carbon::parse($unit->created_at)->diffForHumans() }} |
|
@endforeach
@endsection