2020-04-22 12:54:05 +00:00
|
|
|
@extends('adminlte::layouts.app')
|
|
|
|
|
|
|
|
@section('htmlheader_title')
|
|
|
|
{{ $o->sid }}
|
|
|
|
@endsection
|
|
|
|
@section('page_title')
|
|
|
|
{{ $o->sid }}
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('contentheader_title')
|
|
|
|
Service: {{ $o->sid }} <strong>{{ $o->product->name }}</strong>
|
|
|
|
@endsection
|
|
|
|
@section('contentheader_description')
|
2022-04-22 00:36:41 +00:00
|
|
|
{{ $o->name }}
|
2020-04-22 12:54:05 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('main-content')
|
2022-07-29 07:45:17 +00:00
|
|
|
<div class="row">
|
2024-08-15 22:20:58 +00:00
|
|
|
<div class="col-12 col-md-6">
|
|
|
|
<form method="POST">
|
|
|
|
@csrf
|
2020-04-22 12:54:05 +00:00
|
|
|
|
2024-08-15 22:20:58 +00:00
|
|
|
<div class="card card-dark">
|
|
|
|
<div class="card-header p-2">
|
|
|
|
<div class="card-title">Cancelling Service</div>
|
|
|
|
</div>
|
2020-04-22 12:54:05 +00:00
|
|
|
|
|
|
|
<div class="card-body">
|
2024-08-15 22:20:58 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-8 col-sm-5 col-md-12 col-lg-6">
|
|
|
|
<x-leenooks::form.date name="stop_at" icon="fa-calendar" label="Cancel Date" :value="($x=$o->stop_at) ? $x->format('Y-m-d') : '' "/>
|
2020-04-22 12:54:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-08-15 22:20:58 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<x-leenooks::form.textarea name="notes" label="Notes" placeholder="Please let us know why you are cancelling" :value="$o->order_info_notes ?? ''"/>
|
2020-04-22 12:54:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-footer">
|
2024-08-15 22:20:58 +00:00
|
|
|
<x-leenooks::button.cancel/>
|
|
|
|
<x-leenooks::button.submit class="float-right">Save</x-leenooks::button.submit>
|
2020-04-22 12:54:05 +00:00
|
|
|
</div>
|
2024-08-15 22:20:58 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2020-04-22 12:54:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-15 22:20:58 +00:00
|
|
|
@endsection
|