laravel-datatables
laravel-datatables copied to clipboard
getting with parameters in laravel balde
how we can get with params in laravel blade ???? any example I'm not using dataTable class.
You mean pass a variable to the view from controller?
// controller
public function index(MyDT $dt, Model $model)
{
$dt->render('dt.index', compact('model'));
}
// view dt/index.blade.php
{{ $model->id }}
This issue is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.
This issue was closed because it has been inactive for 7 days since being marked as stale.