@extends('layouts.master') @section('title', 'All States') @section('content') Add State @if(Session::has('error')) {{ Session::get('error') }} @endif @if(Session::has('success')) {{ Session::get('success') }} @endif Name Code @if($states) @foreach($states as $state) {{ $state->state_name }} {{ $state->state_code }} {{ ucfirst($state->status) }} @endforeach @endif @endsection @section('pageJS') @endsection