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

Company list

@csrf

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