@extends('layouts.app') @section('content') Company list @csrf SEARCH Add Company Company name Market @if(count($companies_list) > 0) @foreach($companies_list as $company) {{$company['cmp_name']}} {{$company['market_name']}} @if($edit_cmp_access) @endif @if($delete_cmp_access) @endif @endforeach @endif {!! $companies_list->links() !!} @include('layouts.company_modal') @include('layouts.modals') @endsection @section('script') @endsection