40 lines
725 B
PHP
40 lines
725 B
PHP
<?php
|
|
|
|
namespace Modules\Order\Http\Controllers\Admin;
|
|
|
|
use Modules\Order\Entities\Order;
|
|
use Modules\Admin\Traits\HasCrudActions;
|
|
|
|
class OrderController
|
|
{
|
|
use HasCrudActions;
|
|
|
|
/**
|
|
* Model for the resource.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = Order::class;
|
|
|
|
/**
|
|
* The relations to eager load on every query.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $with = ['products', 'coupon', 'taxes'];
|
|
|
|
/**
|
|
* Label of the resource.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $label = 'order::orders.order';
|
|
|
|
/**
|
|
* View path of the resource.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $viewPath = 'order::admin.orders';
|
|
}
|