laravel model with other model that call to other moder that conncete with the secon model and not the first code example
Example 1: laravel eloquent remove from db
$res=User::where('id',$id)->delete();
Example 2: laravel belongs to
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Phone extends Model
{
/**
* Get the user that owns the phone.
*/
public function user()
{
return $this->belongsTo('App\Models\User');
}
}