@extends('layouts.default') @section('title', $module_title) @push('head') @endpush @section('content')
@if(Session::has('failed'))
{{Session::get('error')}}
@endif

{{$module_title}}

@php $sno = 1; @endphp @foreach($table_data as $lsa) @endforeach
# Legal Authority Name Contact Person Name eMail Phone Address Pincode State District Tehsil
{{$sno++}} {{strtoupper($lsa->org_name)}} {{strtoupper($lsa->title.' '.$lsa->user_name)}} {{strtolower($lsa->email)}} {{$lsa->phone}} {{strtoupper($lsa->address)}} {{$lsa->pincode}} {{strtoupper($lsa->state_name_english)}} {{strtoupper($lsa->district_name_english)}} {{strtoupper($lsa->subdistrict_name_english)}}
@endsection