@extends('backend.layouts.main') @section('title') Branches Management @endsection @section('content')

Branches List

@foreach ($branches as $branch) @endforeach
S.N. Branch Name Address Phone Email Display Order Status Actions
{{ $loop->iteration }} {{ $branch->name }} {{ $branch->address }} {{ $branch->phone }} {{ $branch->email }} {{ $branch->display_order }} @if ($branch->is_published) Published @else Draft @endif
@endsection @section('scripts') @endsection