@extends('backEnd.admin.layouts.master')
@section('title')
Shipping Methods
@endsection
@php
$data = $data ?? [];
@endphp
@section('body')
| SL. |
Shipping Method Type |
Shipping Method Text |
Shipping Method Amount |
Status |
Actions |
@php($i =1)
@if($data->count() > 0)
@foreach($data as $item)
| {{$i++}} |
{{$item->type}} |
{{$item->text}} |
{{$item->amount}} |
@if($item->status ==1)
Active
@else
Inactive
@endif
|
|
@endforeach
@else
| No Data Found! |
@endif
{{--add shipping method--}}
{{--edit shipping method--}}
@endsection
@section('js')
@endsection