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

{{__('obs.brand')}}

@if (checkAuthPermission('brand.store')) @endif
@php($i = 1) @if (!empty($brands)) @foreach ($brands as $brand) @endforeach @endif
# {{__('obs.code')}} {{__('obs.name')}} {{__('obs.local_name')}} {{__('obs.status')}} {{__('obs.action')}}
{{ $i++ }} {{ $brand->code }} {{ $brand->name_eng }} {{ $brand->name_local }} @if ($brand->status == 1)

{{__('obs.active') }}

@else

{{__('obs.inactive') }}

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