@extends('layouts.app') @section('content') @php use App\Helpers\RouteHelper; @endphp @include(RouteHelper::getSidebarView()) Customers @can('add-customers') Add @endcan {{-- Add --}} {{ $dataTable->table() }} {{-- S.No Customer Name Country of Origin Industry Status Option @foreach ($customers as $key => $customer) {{ $key + 1 }} {{ $customer->name }} {{ $customer->country_origin }} {{ $customer->industry }} status == 1) checked @endif> @endforeach --}} @endsection @section('script') {{ $dataTable->scripts() }} @endsection