@extends('layouts.app') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
Branch List
@forelse($allBranch as $key => $branch) @empty @endforelse
Sl No Branch Name Branch Code Branch Location Branch Address Branch Type Created Date Action
{{ $loop->index + 1 }} {{ $branch->branch_name }} {{ $branch->branch_code }} {{ $branch->location }} {{ $branch->address }} @if($branch->branch_type =="0") Type 1 @elseif($branch->branch_type =="1") Type 2 @else Type 3 @endif {{ $branch->created_at->format('d-m-Y') }}
No record found...
Showing 1 to 3 of 4 results
@endsection