@extends('admin.layout.master') @section('title', 'Manage Brand') @section('content')

Brand

@if(checkAuthPermission('brand.store')) @endif
@php($i = 1) @if (!empty($brands)) @foreach ($brands as $brand) @endforeach @endif
# Code Name LocalName Status Action
{{ $i++ }} {{ $brand->code }} {{ $brand->name_eng }} {{ $brand->name_local }} @if ($brand->status == 1)

Active

@else

Inactive

@endif
@if(checkAuthPermission('brand.edit')) @endif
@include('inventory.modal.edit_brand') @include('inventory.modal.add_brand') @endsection