laravel 5.8 convert table structure to relationship methods code example
Example 1: laravel eloquent without relation
$books = Book::without('author')->get();
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');
}
}