@extends('layouts.admin') @section('content') @can('districtposting_create') @endcan
Filter Postings
@csrf
{!! Form::label('districted', 'மாவட்டம்', ['class' => 'awesome']); !!} {!! Form::select('districted', $districts, null, ['class' => 'form-control select2', 'placeholder' => 'All']); !!}
{!! Form::label('selected_post', 'பொறுப்பு', ['class' => 'awesome']); !!} {!! Form::select('selected_post', ['மாவட்டச் செயலாளர்' => 'மாவட்டச் செயலாளர்', 'மாவட்டப் பொருளாளர்' => 'மாவட்டப் பொருளாளர்', 'செய்தி தொடர்பாளர்' => 'செய்தி தொடர்பாளர்', 'மாவட்ட துணைச் செயலாளர்' => 'மாவட்ட துணைச் செயலாளர்', 'செயற்குழு உறுப்பினர்' => 'செயற்குழு உறுப்பினர்'], null, ['class' => 'form-control select2', 'placeholder' => 'All']); !!}
{!! Form::label('assembly_name', 'சட்ட மன்ற தொகுதி', ['class' => 'awesome']); !!} {!! Form::select('assembly_name', $assembly_names, null, ['class' => 'form-control select2', 'placeholder' => 'All']); !!}
{!! Form::label('social_division', 'சமூகப் பிரிவு', ['class' => 'awesome']); !!} {!! Form::select('social_division', ['பிற்படுத்தப்பட்டவர் (BC/MBC)' => 'பிற்படுத்தப்பட்டவர் (BC/MBC)', 'முன்னேறிய வகுப்பினர் (FC)' => 'முன்னேறிய வகுப்பினர் (FC)', 'பழங்குடியினர்' => 'பழங்குடியினர்', 'இசுலாமியர்' => 'இசுலாமியர்', 'கிறித்தவர்' => 'கிறித்தவர்'], null, ['class' => 'form-control select2', 'placeholder' => 'All']); !!}

{{ trans('cruds.districtposting.title_singular') }} {{ trans('global.list') }}
@foreach($searchResults as $key => $searchResult) @endforeach
{{ trans('cruds.districtposting.fields.name') }} {{ trans('cruds.districtposting.fields.district') }} {{ trans('cruds.districtposting.fields.assembly_name') }} {{ trans('cruds.districtposting.fields.social_division') }} {{ trans('cruds.districtposting.fields.education') }} {{ trans('cruds.districtposting.fields.profession') }} {{ trans('cruds.districtposting.fields.join_year') }} {{ trans('cruds.districtposting.fields.gender') }} {{ trans('cruds.districtposting.fields.selected') }} {{ trans('cruds.districtposting.fields.selected_post') }} ID 

Card Letter
@can('districtposting_show') {{ trans('global.view') }} @endcan @can('districtposting_edit') {{ trans('global.edit') }} @endcan @can('districtposting_delete')
@endcan
{{ $searchResult->name ?? '' }} {{ $searchResult->district ?? '' }} {{ $searchResult->assembly_name ?? '' }} {{ $searchResult->social_division ?? '' }} {{ $searchResult->education ?? '' }} {{ $searchResult->profession ?? '' }} {{ $searchResult->join_year ?? '' }} {{ $searchResult->gender ?? '' }} {{ $searchResult->selected ?? '' }} selected ? 'checked' : '' }}> {{ $searchResult->selected_post ?? '' }} {{ $searchResult->id ?? '' }}
@endsection @section('scripts') @parent @endsection