@extends('admin.layouts.master')
@section('content')
| Name |
Unit |
Price |
Status |
Action |
@foreach($courierTypeList as $courierType)
| {{ $courierType->name }} |
{{ $courierType->unit->name }} |
{{ $courierType->price }} |
@if($courierType->status == 'Active')
Active
@else
Inactive
@endif
|
|
@endforeach
@endsection