@extends('admin.layouts.master')
@section('content')
| Name |
Email |
Phone |
Address |
Status |
Action |
@foreach($branchList as $branch)
| {{ $branch->name }} |
{{ $branch->email }} |
{{ $branch->phone }} |
{{ $branch->address }} |
@if($branch->status == 'Active')
Active
@else
Inactive
@endif
|
|
@endforeach
@endsection