@extends('layouts.admin-layout') @section('title', 'All Brand ') @section('content')

Brand Section

@foreach($get_brands as $brand) @endforeach
S.N. Brand Name Image status Action
{{ $loop->iteration }} {{$brand->brand_name}} {{$brand->status === 1 ? 'Approve' : 'Not Approve'}}
@endsection @section('script') @endsection