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