@extends('layouts.app') @section('content')

Brand list

@csrf

@if(count($brands) > 0) @foreach($brands as $brand) @endforeach @endif
Brand name Company name
{{$brand['brand_name']}} {{$brand['cmp_name']}} @if($edit_brand_access) @endif @if($delete_brand_access) @endif
{!! $brands->links() !!}
@include('layouts.brand_modal') @include('layouts.modals')
@endsection @section('script') @endsection