@extends('dashboard.layout.master') @section('content')
@include('dashboard.layout.navbar')
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