You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.8 KiB
113 lines
3.8 KiB
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Requests\FoodRequest;
|
|
use Backpack\CRUD\app\Http\Controllers\CrudController;
|
|
use Backpack\CRUD\app\Library\CrudPanel\CrudPanelFacade as CRUD;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
/**
|
|
* Class FoodCrudController
|
|
* @package App\Http\Controllers\Admin
|
|
* @property-read \Backpack\CRUD\app\Library\CrudPanel\CrudPanel $crud
|
|
*/
|
|
class FoodCrudController extends CrudController
|
|
{
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\ListOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\CreateOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\UpdateOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\DeleteOperation;
|
|
use \Backpack\CRUD\app\Http\Controllers\Operations\ShowOperation;
|
|
|
|
/**
|
|
* Configure the CrudPanel object. Apply settings to all operations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setup()
|
|
{
|
|
CRUD::setModel(\App\Models\Food::class);
|
|
CRUD::setRoute(config('backpack.base.route_prefix') . '/food');
|
|
CRUD::setEntityNameStrings(
|
|
__('entities.food.singular'),
|
|
__('entities.food.plural'),
|
|
);
|
|
$this->crud->addClause(function (Builder $builder){
|
|
$builder->whereHas('category', function ($query) {
|
|
$query->where('user_id', backpack_user()->id);
|
|
});
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
* Define what happens when the List operation is loaded.
|
|
*
|
|
* @see https://backpackforlaravel.com/docs/crud-operation-list-entries
|
|
* @return void
|
|
*/
|
|
protected function setupListOperation()
|
|
{
|
|
CRUD::setFromDb(); // set columns from db columns.
|
|
$this->crud->removeColumn('category_id');
|
|
$this->crud->addColumn([ // Select
|
|
'label' => "Category",
|
|
'type' => 'select',
|
|
'name' => 'category_id', // the db column for the foreign key
|
|
'entity' => 'category',
|
|
'model' => "App\Models\Category", // related model
|
|
'attribute' => 'name', // foreign key attribute that is shown to user
|
|
'options' => (function ($query) {
|
|
return $query->orderBy('id', 'ASC')->get();
|
|
}), // you can use this to filter the results show in the select
|
|
]);
|
|
// dd($this->crud);
|
|
|
|
// dd($this->settings);
|
|
/**
|
|
* Columns can be defined using the fluent syntax:
|
|
* - CRUD::column('price')->type('number');
|
|
*/
|
|
}
|
|
|
|
/**
|
|
* Define what happens when the Create operation is loaded.
|
|
*
|
|
* @see https://backpackforlaravel.com/docs/crud-operation-create
|
|
* @return void
|
|
*/
|
|
protected function setupCreateOperation()
|
|
{
|
|
CRUD::setFromDb(); // set fields from db columns.
|
|
CRUD::field([ // Select
|
|
'label' => "Category",
|
|
'type' => 'select',
|
|
'name' => 'category_id', // the db column for the foreign key
|
|
'entity' => 'category',
|
|
'model' => "App\Models\Category", // related model
|
|
'attribute' => 'name', // foreign key attribute that is shown to user
|
|
'options' => (function ($query) {
|
|
return $query->orderBy('id', 'ASC')->get();
|
|
}), // you can use this to filter the results show in the select
|
|
]);
|
|
CRUD::field('image')->type('upload')->withFiles([
|
|
'path' => 'food_images',
|
|
]);
|
|
/**
|
|
* Fields can be defined using the fluent syntax:
|
|
* - CRUD::field('price')->type('number');
|
|
*/
|
|
}
|
|
|
|
/**
|
|
* Define what happens when the Update operation is loaded.
|
|
*
|
|
* @see https://backpackforlaravel.com/docs/crud-operation-update
|
|
* @return void
|
|
*/
|
|
protected function setupUpdateOperation()
|
|
{
|
|
$this->setupCreateOperation();
|
|
}
|
|
}
|
|
|