Ali do Amaral Pedrozo
Ali do Amaral Pedrozo
Thank's. Let's the code... 1) I have a method create in controller public function create($id){ $history = new History; $devices = DB::table('devices') ->join('models','models.id_model','=','devices.model_id') ->where('id_device', '=', $id) ->orderBy('models.model_name','asc')->pluck('models.model_name','devices.id_device'); return view('deviceapp.history.history',['history'=> $history,'devices'...
For someone fields the library work well, for another don't work.. For example... this worked: **BootForm::textarea('details','Notes')** this didn't work: **BootForm::date('datetime','Date')** Because this, I tried to pass the old('x') ... **BootForm::date('datetime','Date',old('datetime'))**...
thank's