@if ( session()->has('message') )
Well done! {{ session('message') }}
@endif
@if(count($data))
| ID |
Name |
Status |
Action |
@foreach($data as $brand)
| 1 |
{{$brand['brand_name']}} |
@if($brand['flags'] == 1) {{App\Models\Brand::STATUS_ACTIVE}} @else {{App\Models\Brand::STATUS_NOT_ACTIVE}} | @endif
Edit Delete |
@endforeach
@endif