@extends('layouts.authenticated') @section('title', 'Cabang') @section('page-title', 'Cabang') @section('page-content')

Manajemen Cabang

Kelola cabang toko Anda

@forelse($branches as $branch)

{{ $branch->name }}

{{ $branch->code }}

{{ $branch->is_active ? 'Aktif' : 'Nonaktif' }}
@if($branch->address)

{{ $branch->address }}

@endif @if($branch->phone)
{{ $branch->phone }}
@endif @if($branch->email)
{{ $branch->email }}
@endif
@if($branch->has_warehouse)

Memiliki Gudang

@endif
@empty

Belum Ada Cabang

Mulai dengan menambahkan cabang pertama Anda.

@endforelse
@push('styles') @endpush @endsection