@extends('layouts.app') @section('title', __('Factories')) @section('content')
{{ __('Production Facilities Tracked') }}
{{ __('Avg. Utility') }}
{{ __('Current Status') }}
| {{ __('Factory Name') }} | {{ __('Parent Company') }} | {{ __('Manager') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|
|
{{ $factory->name }}
{{ $factory->address ?? __('No address') }}
|
@if($factory->company) {{ $factory->company->name }} @else - @endif | {{ $factory->manager ? $factory->manager->name : __('Unassigned') }} | @if($factory->status == 'active') {{ __('Active') }} @else {{ __('Inactive') }} @endif |
|
| {{ __('No factories found.') }} | ||||