Baxa
Baxa
Read the documentation > Note: For each column edit setting, you need to have a corresponding field in the form.
Your need create OperationsController and add form function or Something like this ```php public function update_operation($id) { return Admin::form(Operations::class, function (Form $form) { $form->textarea('adm_remarks'); $form->text('approval_status'); })->update($id); } ``` add to...
Change first character of "models" to upper case. ```php use App\Models\User; ``` _If that doesn't help, show the User model php file_
Maybe this will help ` ... ->get(['brands_id', DB::raw('brand_name as text')]); .. ` to `->get([DB::raw('brand_category.brands_id as id'), DB::raw('brand_name as text')]);`