@extends('layouts.app-admin')
@section('content')
Brand
| Sr. No. |
Logo |
Title |
Status |
Action |
@foreach($brand as $key=>$row)
| {{$key+1}} |
@if($row->img)
@else
@endif
|
{{$row->title}} |
@if($row->status=='active')
Active
@else
In-Active
@endif
|
|
@endforeach
@endsection
@section('script')
@endsection