@extends('admin.layouts.master') @section('title', 'List of Brand') @section('content')

Brands List

Filter Prodcuts
Brands List
@foreach ($brands as $brand) @endforeach
# Image Name Slug Order_no Featured Status Actions
{{ $brand->id }}
{{ $brand->name }} {{ $brand->slug }} {{ $brand->order_no }} @if ($brand->is_featured == 1) Featured @else UnFeatured @endif @if ($brand->status == 1) Published @else Draft @endif
@endsection @section('js') {{-- --}} @endsection