@extends('super_admins.layouts.master') @section('title') Bank Accounts @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content') Bank Accounts Home Bank Accounts @php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp {{-- @if (auth()->user()->hasPermission('bank_accounts.export')) --}} Export {{-- @endif --}} {{-- @if (auth()->user()->hasPermission('bank_accounts.import')) --}} Import {{-- @endif --}} {{-- @if (auth()->user()->hasPermission('bank_accounts.add')) --}} Add {{-- @endif --}} Bank Name Account Holder Name Account Number IBAN # BIC Swift Status Action @foreach ($bank_accounts as $bank_account) {{ $bank_account->name }} {{ $bank_account->account_holder_name}} {{ $bank_account->account_number }} {{ $bank_account->iban_number}} {{ $bank_account->bic_swift}} {{ $bank_account->is_active ? "Active" : "InActive" }} @if (!$bank_account->trashed()) {{-- @if (auth()->user()->hasPermission('bank_accounts.show')) --}} {{-- @endif --}} {{-- @if (auth()->user()->hasPermission('bank_accounts.edit')) --}} {{-- edit --}} {{-- @endif --}} {{-- @if (auth()->user()->hasPermission('bank_accounts.delete')) --}} {{-- @endif --}} {{-- delete --}} Warning × This action is irreversible. Are You Sure , You want to delete this Bank Account ? @csrf @method('DELETE') @else {{-- restore --}} {{-- delete permanently --}} {{-- @if (auth()->user()->hasPermission('bank_accounts.delete')) --}} {{-- @endif --}} Warning × This action is irreversible. Are You Sure , You want to delete this Bank permanently ? @csrf @method('DELETE') Warning × Are You Sure , You want to restore this Bank Account ? @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 Bank Account ?
This action is irreversible. Are You Sure , You want to delete this Bank permanently ?
Are You Sure , You want to restore this Bank Account ?