@extends('layouts.app') @section('title', 'লাইসেন্স ইন্সপেক্টর তালিকা') @section('content')

@yield('title')

@include('messages.message')
@foreach ($licenseInspectors as $key => $licenseInspector) @php $wardIds = json_decode('['.$licenseInspector->ward_id.']', true); $wardNo = App\Ward::select('ward_no') ->whereIn('id',$wardIds) ->get(); $ward_no = $wardNo->implode("ward_no", ","); @endphp @endforeach
@include('datatable.datatable') @endsection