@extends('layouts.admin_default') @section('title', 'Loyality Table') @section('page', 'Loyality Table / List') @section('content')
@if(isset($errors) && $errors->any()) @foreach($errors->all() as $error )
{{$error}}
@endforeach @endif @if(session()->has('message'))
{{ session()->get('message') }}
@elseif(session()->has('error'))
{{ session()->get('error') }}
@endif
Dashboard / State
{{-- --}}
Apply action on checked record.
@php $countries = \App\Models\AllCountry::distinct()->get(['id', 'country_name']); $states = \App\Models\State::distinct()->get(['id', 'state_name']); @endphp
@php $citys = \App\Models\City::distinct()->orderBy('city_name', 'asc')->get(['id', 'city_name']); @endphp
Locality Id Area Country Name Country Id Timezone State Name State Id City Name City Id Post Code Longitude Latitude Altitude Created Date Action
Locality Id Area Country Name Country Id Timezone State Name State Id City Name City Id Post Code Longitude Latitude Altitude Created Date Action
@endsection @section('footer') @endsection