@extends('backend.master') @section('title', ___('multibranch.Branches')) @section('content')

{{ $title }}

@if (hasPermission('user_create')) {{ ___('common.add') }} @endif
@if (hasPermission('user_update') || hasPermission('user_delete')) @endif @forelse ($branches ?? [] as $key => $row) @if (hasPermission('user_update') || hasPermission('user_delete')) @endif @empty @endforelse
{{ ___('common.sr_no.') }} {{ ___('common.name') }} {{ ___('common.email') }} {{ ___('common.phone') }} {{ ___('common.address') }} {{ ___('common.status') }}{{ ___('common.action') }}
{{ ++$key }} {{ $row->name }} {{ $row->email }} {{ $row->phone }} {{ $row->address }} @if ($row->status == App\Enums\Status::ACTIVE) {{ ___('common.active') }} @else {{ ___('common.inactive') }} @endif

{{ ___('common.no_data_available') }}

{{ ___('common.please_add_new_entity_regarding_this_table') }}

@endsection @push('script') @include('backend.partials.delete-ajax') @endpush