@extends('tenant.layouts.master') @section('style') @endsection @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ $module == 'pos' ? __('breadcrumb.point_of_sale') : __('breadcrumb.warehouses') => '/warehouses/branches', __('breadcrumb.branches') => route('tenant.' . $module . '.branches.index'), __('breadcrumb.branch_data') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => $module . '.branches']) @endsection @section('content')

@lang('warehouses/branches/show.branch_warehouse_details')

@lang('general.edit')
@lang('warehouses/branches/show.branch_warehouse_details')
@lang('warehouses/branches/show.warehouse_name') {{ $branch->name }}
@lang('warehouses/branches/show.warehouse_type') {{ $branch->branch_type?->name ?? '---' }}
@lang('warehouses/branches/show.address') {{ $branch->address }}
@lang('warehouses/branches/show.monthly_purchase_limit') {{ $branch->maximum_purchase_monthly ?? '---' }}
@lang('warehouses/branches/show.status') {{ $branch->status ? 'فعّال' : 'غير فعّال' }}
@lang('warehouses/branches/show.purchases_subject_to_tax') {{ $branch->purchases_under_tax ? 'نعم' : 'لا' }}
@lang('warehouses/branches/show.sales_subject_to_tax') {{ $branch->sales_under_tax ? 'نعم' : 'لا' }}
@lang('warehouses/branches/show.contact_information')
@lang('warehouses/branches/show.responsible_name') {{ $branch->responsible_name }}
@lang('warehouses/branches/show.phone_number') {{ $branch->phone ?? '---' }}
@lang('warehouses/branches/show.fax') {{ $branch->fax ?? '---' }}
@endsection