@extends('layouts.admin-layout')
@section('title', 'All Quantity ')
@section('content')
Quantity Section
| S.N. |
Brand Name |
Quantity Number |
status |
Action |
@foreach($get_quantities as $quantity)
| {{ $loop->iteration }} |
{{$quantity->quantity_name ? : '--'}} |
{{$quantity->quantity_number ? : '--'}} |
{{$quantity->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection