36 lines
735 B
PHP
36 lines
735 B
PHP
|
@extends('adminlte::layouts.app')
|
||
|
|
||
|
@section('htmlheader_title')
|
||
|
Service #{{ $o->id }}
|
||
|
@endsection
|
||
|
|
||
|
@section('contentheader_title')
|
||
|
Service #
|
||
|
@endsection
|
||
|
@section('contentheader_description')
|
||
|
{{ $o->service_id }}
|
||
|
@endsection
|
||
|
|
||
|
@section('main-content')
|
||
|
<div class="col-md-12">
|
||
|
<div class="box box-primary">
|
||
|
<div class="box-header with-border">
|
||
|
<h3 class="box-title">Service Information</h3>
|
||
|
</div>
|
||
|
|
||
|
<div class="box-body">
|
||
|
<div class="col-md-3">
|
||
|
@switch($o->order_status)
|
||
|
@case('ORDER-SUBMIT')
|
||
|
@case('ORDER-SENT')
|
||
|
@include('u.widgets.service.order.sent')
|
||
|
@break
|
||
|
|
||
|
@default
|
||
|
@include('u.widgets.service.info')
|
||
|
@endswitch
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
@endsection
|