ultimatepos/Modules/Portal/Resources/views/customer/repairs/show.blade.php

14 lines
810 B
PHP

@extends('portal::layouts.customer')
@section('title', $jobSheet->job_sheet_no)
@section('content')
<section class="content-header"><h1>{{ $jobSheet->job_sheet_no }}</h1></section>
<section class="content">
<div class="box box-primary"><div class="box-body">
<p><strong>@lang('portal::lang.status'):</strong> {{ $jobSheet->status->name ?? '' }}</p>
<p><strong>@lang('repair::lang.device'):</strong> {{ $jobSheet->Brand->name ?? '' }} {{ $jobSheet->DeviceModel->name ?? '' }}</p>
<p><strong>@lang('repair::lang.serial_no'):</strong> {{ $jobSheet->serial_no }}</p>
@if($jobSheet->technician)<p><strong>@lang('repair::lang.technician'):</strong> {{ $jobSheet->technician->user_full_name ?? $jobSheet->technician->first_name }}</p>@endif
</div></div>
</section>
@endsection