@extends('layouts.app') @section('title', __('Branches')) @section('content')
| {{ __('Branch Name') }} | {{ __('Type') }} | {{ __('Parent Company') }} | {{ __('Associated Factory') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
|
{{ $branch->name }}
{{ $branch->location ?? __('N/A') }}
|
{{ __(ucfirst($branch->type)) }} | {{ $branch->company ? $branch->company->name : '-' }} | {{ $branch->factory ? $branch->factory->name : __('None') }} | @if($branch->status == 'active') {{ __('Active') }} @else {{ __('Inactive') }} @endif |
|
| {{ __('No branches found.') }} | |||||