@extends('layouts.master') @section('title') LT-99 :: จัดการสาขาร้าน @endsection @section('sub_title') จัดการสาขาร้าน @endsection @section('content')

รายการสาขา

@if (count($stores))
@foreach ($stores as $key => $store) @endforeach
ลำดับ ชื่อสาขา รหัสสาขา จำนวนพนักงาน เครดิตตั้งต้น เครดิต สถานะ ดำเนินการ
{{ $key + 1 }} {{ $store->store_name }} {{ str_pad($store->id, 5, 0, STR_PAD_LEFT) }} {{ $store->staff->count() }} คน {{ nf($store['default_credit'], true) }} {{ number_format($store->wallet()->sum('amount'), 2) }} THB {{ $store->status ? 'เ' : '' }}ปิดทำการ แก้ไข ตั้งค่า พนักงาน เคลียเครดิต
@csrf @method('DELETE')
@else

ไม่มีสาขา ณ​ ปัจจุบัน

@endif
@endsection @section('scripts') @endsection