1. Go to this page and download the library: Download waka/laravel_yamlforms library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
waka / laravel_yamlforms example snippets
return [
];
use Waka\YamlForms\YamlFormsTrait;
use Waka\YamlForms\YamlFormsInterface;
class Tableau extends Model implements YamlFormsInterface
{
use YamlFormsTrait;
...
}
//in this exemple we are using spaties querybuilder
use App\Models\Tableau;
use Spatie\QueryBuilder\QueryBuilder;
class TableauController extends Controller
{
private $orderInverted = true;
public function index()
{
$globalSearch = AllowedFilter::callback('global', function ($query, $value) {
$query->where(function ($query) use ($value) {
Collection::wrap($value)->each(function ($value) use ($query) {
$query->orWhere('name', 'LIKE', "%{$value}%");
$query->orWhere('slug', 'LIKE', "%{$value}%");
$query->orWhere('description', 'LIKE', "%{$value}%");
});
});
});
// logger(Tableau::extractFields($columnsConfig));
$columnsConfig = Tableau::getColumnsConfig();
$columnsMeta = Tableau::getColumnsMeta();
$tableaux = QueryBuilder::for(Tableau::class)
->defaultSort($columnsConfig['defaultOrder'])
->allowedSorts(['id', 'painted_at','name', 'order_column', 'slug', 'updated_at'])
->allowedFilters([$globalSearch])
->paginate($columnsConfig['pagination'])
->withQueryString()
->through([Tableau::class, 'dataYamlColumnTransformer']);
$inertiaData = [
'tableaux' => $tableaux,
'metas' => $columnsMeta,
'columnsConfig' => $columnsConfig,
'sort' => Request::all('sort'),
'filter' => Request::all('filter'),
];
return Inertia::render('Tableaux/Index', $inertiaData);
}
public function edit(Tableau $tableau)
{
//logger('edit');
$inertiaData = [
'formData' => $tableau->dataYamlFieldsTransformer(),
'config' => $tableau->getModelFormConfig()
];
//logger($tableau->getModelFormConfig()['fields']);
return Inertia::render('Tableaux/Edit', $inertiaData);
}
public function create() {
$inertiaData = [
'formData' => Tableau::getEmptyForm(),
'config' => Tableau::getStaticModelFormConfig()
];
return Inertia::render('Tableaux/Create', $inertiaData);
}
/**
* Store a newly created resource in storage.
*
* @param \App\Http\Requests\StoreTableauRequest $request
* @return \Illuminate\Http\Response
*/
public function store()
{
$validationRules = Tableau::getStaticModelValidationRules();
$tableau = Tableau::create(Request::validate($validationRules));
$tableau->processImage(Request::get('image'));
if($tags = Request::get('tableauTags')) {
$tableau->tableauTags()->sync($tags);
}
return to_route('tableaux.index')->with('message', 'Tableau crée');
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateTableauRequest $request
* @param \App\Models\Tableau $tableau
* @return \Illuminate\Http\Response
*/
public function update(Tableau $tableau)
{
$validationRules = Tableau::getStaticModelValidationRules();
$tableau->update(Request::validate($validationRules));
$tableau->processImage(Request::get('image'));
if($tags = Request::get('tableauTags')) {
$tableau->tableauTags()->sync($tags);
}
// return redirect()->back()->with('message', 'Tableau mis à jour');;
return to_route('tableaux.index')->with('message', 'Tableau crée');
}