@extends('layout.app') @section('title') Banks @endsection @section('pagetitle') Banks @endsection @section('content')
@include('includes.success')
@foreach ($banks as $item) @endforeach
Sn Bank Name Code Logo
{{$i+1}} {{ucwords($item->bank_name)}} {{ucwords($item->bank_code)}} @can('manage users') @endcan @if (Auth::user()->roles()->first()->name == "super admin" || Auth::user()->roles()->first()->name == "managing director") @endif
@endsection @section('scripts') @endsection