@extends('super_admins.layouts.master') @section('title') Countries @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content') Countries Home Countries @php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp Export Import Add Name Phone Code Iso Code 2 Image Created at Status Action @foreach ($countries as $country) {{ $country->phone_code }} {{ $country->iso_code_2 }} @if ($country->image)     @else - @endif {{ date_format($country->created_at, 'd-m-Y') }} {{ $country->is_active ? 'Active' : 'Inactive' }} @if (!$country->trashed()) {{-- edit --}} {{-- delete --}} Warning × This action is irreversible. Are You Sure , You want to delete this Country ? @csrf @method('DELETE') @else {{-- restore --}} {{-- delete permanently --}} Warning × This action is irreversible. Are You Sure , You want to delete this Country permanently ? @csrf @method('DELETE') Warning × Are You Sure , You want to restore this Country ? @csrf @endif @endforeach @endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection
This action is irreversible. Are You Sure , You want to delete this Country ?
This action is irreversible. Are You Sure , You want to delete this Country permanently ?
Are You Sure , You want to restore this Country ?