ultimatepos/Modules/Project/Resources/views/project/partials/equipment.blade.php

48 lines
2.1 KiB
PHP

@if(!empty($maintenance_installed) || !empty($asset_management_installed))
<div class="row">
@if(!empty($maintenance_installed))
<div class="col-md-12">
<h4><i class="fas fa-industry"></i> @lang('project::lang.project_equipment')</h4>
<div class="table-responsive" style="margin-bottom:24px;">
<table class="table table-bordered table-striped" id="project_equipment_table" style="width:100%">
<thead>
<tr>
<th>@lang('maintenance::lang.code')</th>
<th>@lang('maintenance::lang.name')</th>
<th>@lang('maintenance::lang.category')</th>
<th>@lang('maintenance::lang.production_line')</th>
<th>@lang('maintenance::lang.status')</th>
<th>@lang('messages.action')</th>
</tr>
</thead>
</table>
</div>
@can('maintenance.equipment.create')
<a href="{{ action([\Modules\Maintenance\Http\Controllers\EquipmentController::class, 'create']) }}?project_id={{ $project->id }}" class="btn btn-primary btn-sm">
<i class="fa fa-plus"></i> @lang('maintenance::lang.add')
</a>
@endcan
</div>
@endif
@if(!empty($asset_management_installed))
<div class="col-md-12" style="margin-top:24px;">
<h4><i class="fas fa-box"></i> @lang('project::lang.project_fixed_assets')</h4>
<div class="table-responsive">
<table class="table table-bordered table-striped" id="project_assets_table" style="width:100%">
<thead>
<tr>
<th>@lang('assetmanagement::lang.asset_code')</th>
<th>@lang('assetmanagement::lang.asset_name')</th>
<th>@lang('lang_v1.quantity')</th>
<th>@lang('sale.unit_price')</th>
<th>@lang('messages.action')</th>
</tr>
</thead>
</table>
</div>
</div>
@endif
</div>
@endif