@extends('layouts.admin.master') @section('styles') @endsection @section('body-content')

{{--
All Brands
--}}
@if(Auth::guard('admin')->check())
{{-- Add Brand --}}
@endif
{{--
All Brands
--}}
@if ( session()->has('message') )
Well done! {{ session('message') }}
@endif @if(count($data))
@foreach($data as $brand) @endif @endforeach
ID Name Status Action
1 {{$brand['brand_name']}} @if($brand['flags'] == 1) {{App\Models\Brand::STATUS_ACTIVE}} @else {{App\Models\Brand::STATUS_NOT_ACTIVE}}Edit Delete
@endif
@endsection @section('scripts') @endsection