@extends('layouts.admin') @section('title', 'Branches') @section('page-title', 'Branches') @section('content')

Manage your shop branches.

@can('create branches') Add Branch @endcan
@forelse($branches as $branch) @empty @endforelse
Name Code Phone Manager Status Actions
{{ $branch->name }} {{ $branch->code }} {{ $branch->phone ?? '—' }} {{ $branch->manager?->name ?? '—' }} {{ $branch->status }} @can('view branches') View @endcan @can('edit branches') Edit @endcan @can('delete branches')
@csrf @method('DELETE')
@endcan
No branches yet.
@if($branches->hasPages())
{{ $branches->links() }}
@endif
@endsection