@extends('admin.layouts.master') @section('title', 'All Brands') @section('content')

{{ __('Brand List') }}

{{ __('Brand List') }}

@foreach ($brands as $id => $brand) @endforeach
# Logo Brand Name Order No Featured Status Action
{{ ++$id }} {{ $brand->name }} {{ $brand->order_no }} @if ($brand->is_featured) Yes @else No @endif @if ($brand->status == 'active') {{ $brand->status }} @else {{ $brand->status }} @endif
@csrf Edit
@endsection