@extends('admin.layouts.app') @section('page-title', 'Mark List') @section('content')

Mark List Management

@if(session('success'))
{{ session('success') }}
@endif
🔍
@foreach($markList as $mark) @endforeach
# Mark No/Item No Origin Destination Customer Name Customer Id Customer No Date Status Action
{{ $mark->id }} {{ $mark->mark_no }} {{ $mark->origin }} {{ $mark->destination }} {{ $mark->customer_name }} {{ $mark->customer_id }} {{ $mark->mobile_no }} {{ \Carbon\Carbon::parse($mark->date)->format('d-m-Y') }} @if($mark->status == 'active') Active @else In-Active @endif @if($mark->status == 'active') Deactivate @else Activate @endif
@if($markList->isEmpty())
No mark numbers found.
@endif
@endsection