@extends('layouts.app') @section('title') {{ __('Thiết lập bank bảo trì') }} @endsection @section('cashout') active @endsection @section('section.header')

{{ __('Thiết lập bank bảo trì') }}


@endsection @section('section.content')
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
{{ __('Danh sách Bank Out bảo trì') }}
@csrf
@error('bank_name') * {{ $message }} @enderror
@foreach ($bankMaintenances as $item) @endforeach
{{ __('Bank Code') }} {{ __('Short Name') }} {{ __('Display Name') }} {{ __('Bank Name') }} {{ __('operation') }}
{{ $item->bank_code }} {{ $item->short_name }} {{ $item->display_name }} {{ $item->bank_name }} {{ __('Xoá') }}
@endsection @section('styles') @endsection @section('scripts') @endsection