withtrashed laravel code example
Example 1: laravel withtrashed
public function category() {
return $this->belongsTo('App\Category')->withTrashed();
}
Example 2: eloquent update row response
DB::table('users')
->where('id', 1)
->update(['votes' => 1]);
Example 3: laravel eloquent remove from db
public function destroy($id){
$res=User::find($id)->delete();
if ($res){
$data=[
'status'=>'1',
'msg'=>'success'
];
}else{
$data=[
'status'=>'0',
'msg'=>'fail'
];
return response()->json($data);
Example 4: php artisan make model
php artisan make:model Flight
Example 5: larave Soft Deletes
Schema::table('flights', function (Blueprint $table) {
$table->softDeletes();
});
Example 6: laravel update
$flight = App\Models\Flight::find(1);
$flight->name = 'New Flight Name';
$flight->save();