DeliveryAppointmentController.php 286 B

123456789101112
  1. <?php
  2. namespace App\Http\Controllers;
  3. class DeliveryAppointmentController extends Controller
  4. {
  5. public function appointment()
  6. {
  7. $owners = app("OwnerService")->getIntersectPermitting();
  8. return view("store.checkingReceive.appointment",compact("owners"));
  9. }
  10. }