@extends('dashboard.layout.master') @section('content')
@include('dashboard.layout.navbar') @php $current_user = Auth::user(); if ($current_user) { $allow_access = allow_access($current_user->id); } $district_management = json_decode($allow_access->district_management); array_unshift($district_management, 0); @endphp
Bank List
Create Bank
@foreach($bank as $item) @endforeach
Database id Bank Name Actions
{{$item->id}} {{$item->name}} Edit {{$item->status=='0' ? 'active' : 'inactive'}}
@if(session('error')) @endif @if(session('success')) @endif @endsection