@extends('admin.layouts.master') @section('title', 'State Management') @section('parent_title', 'Dashboard') @section('content')
Export
Selected
@foreach($states as $state) @endforeach
S.No State Name Status Actions
{{ $loop->iteration }}
{{ substr($state->state_name,0,1) }}
{{ $state->state_name }}
{{ $state->status == 1 ? 'Active' : 'Inactive' }}
Actions
Showing {{ $states->firstItem() }} to {{ $states->lastItem() }} of {{ $states->total() }} entries
{{ $states->links() }}
@section('scripts') @endsection @endsection