@extends('layouts.app')
@section('content')
@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
Sl No |
Branch Name |
Branch Code |
Branch Location |
Branch Address |
Branch Type |
Created Date |
Action |
@forelse($allBranch as $key => $branch)
{{ $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') }} |
|
@empty
No record found... |
@endforelse
@endsection