30 lines
513 B
PHP
30 lines
513 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Grocery;
|
|
|
|
use Illuminate\View\Component;
|
|
use Illuminate\View\View;
|
|
|
|
class DeliveryOptions extends Component
|
|
{
|
|
/**
|
|
* Create a new component instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Get the view/contents that represent the component.
|
|
*
|
|
* @return View|string
|
|
*/
|
|
public function render(): View|string
|
|
{
|
|
return view('components.grocery.delivery-options');
|
|
}
|
|
}
|