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