- <?php
- namespace App\Http\Controllers;
- class DeliveryAppointmentController extends Controller
- {
- public function appointment()
- {
- $owners = app("OwnerService")->getIntersectPermitting();
- return view("store.checkingReceive.appointment",compact("owners"));
- }
- }
|