File tree Expand file tree Collapse file tree 4 files changed +62
-0
lines changed Expand file tree Collapse file tree 4 files changed +62
-0
lines changed Original file line number Diff line number Diff line change 380380 'create_delivery ' => 'create delivery ' ,
381381 'delivery_created_from_order ' => 'delivery created from order ' ,
382382 'delivery ' => 'delivery ' ,
383+ 'delivered ' => 'delivered ' ,
383384];
Original file line number Diff line number Diff line change 22
33namespace VentureDrake \LaravelCrm \Http \Controllers ;
44
5+ use Barryvdh \DomPDF \Facade \Pdf ;
56use Illuminate \Http \Request ;
67use VentureDrake \LaravelCrm \Http \Requests \StoreDeliveryRequest ;
78use VentureDrake \LaravelCrm \Http \Requests \UpdateDeliveryRequest ;
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace VentureDrake \LaravelCrm \Http \Requests ;
4+
5+ use Illuminate \Foundation \Http \FormRequest ;
6+
7+ class StoreDeliveryRequest extends FormRequest
8+ {
9+ /**
10+ * Determine if the user is authorized to make this request.
11+ *
12+ * @return bool
13+ */
14+ public function authorize ()
15+ {
16+ return true ;
17+ }
18+
19+ /**
20+ * Get the validation rules that apply to the request.
21+ *
22+ * @return array
23+ */
24+ public function rules ()
25+ {
26+ return [
27+ //
28+ ];
29+ }
30+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace VentureDrake \LaravelCrm \Http \Requests ;
4+
5+ use Illuminate \Foundation \Http \FormRequest ;
6+
7+ class UpdateDeliveryRequest extends FormRequest
8+ {
9+ /**
10+ * Determine if the user is authorized to make this request.
11+ *
12+ * @return bool
13+ */
14+ public function authorize ()
15+ {
16+ return true ;
17+ }
18+
19+ /**
20+ * Get the validation rules that apply to the request.
21+ *
22+ * @return array
23+ */
24+ public function rules ()
25+ {
26+ return [
27+ //
28+ ];
29+ }
30+ }
You can’t perform that action at this time.
0 commit comments