@extends('super_admins.layouts.master') @section('title') Gateways @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content') Home Gateways @php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp All Gateways {{-- Export Import Add Gateway --}} Name Code Symbol Status Action @foreach ($gateways as $gateway) {{ $gateway->name }} {{ $gateway->code }} {{ $gateway->symbol }} {{ $gateway->status ? 'Active' : 'Inactive' }} @if (!$gateway->trashed()) {{-- --}} @else {{-- restore --}} {{-- delete permanently --}} @endif Warning × This action is irreversible. Are You Sure , You want to delete this Gateway permanently ? @csrf @method('DELETE') Warning × Are You Sure , You want to restore this Gateway ? @csrf @endforeach @endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection
This action is irreversible. Are You Sure , You want to delete this Gateway permanently ?
Are You Sure , You want to restore this Gateway ?