@extends('super_admins.layouts.master') @section('title') Contacts @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content') Home Contacts @php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp All Contacts {{-- Export Import Add Contact --}} Name Email Created at Action @foreach ($contacts as $contact) {{ $contact->name }} {{ $contact->email }} {{ date_format($contact->created_at, 'd-m-Y') }} @if (!$contact->trashed()) {{-- --}} @else {{-- restore --}} {{-- delete permanently --}} @endif Warning × This action is irreversible. Are You Sure , You want to delete this Contact permanently ? @csrf @method('DELETE') Warning × Are You Sure , You want to restore this Contact ? @csrf @endforeach @endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection
This action is irreversible. Are You Sure , You want to delete this Contact permanently ?
Are You Sure , You want to restore this Contact ?