@extends('super_admins.layouts.master') @section('title') Currencies @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content') Home Currencies @php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp All Currencies {{-- Export Import Add Gateway --}} Name Code Symbol Status Default Action @foreach ($currencies as $currency) {{ $currency->name }} {{ $currency->code }} {{ $currency->symbol }} {{ $currency->is_active ? 'Active' : 'Inactive' }} {{ $currency->is_default ? 'Yes' : 'No' }} 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 ?