Answer the question
In order to leave comments, you need to log in
How to link 4 tables in laravel ORM?
There are 4 tables:
transport_types
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Transport_type extends Model
{
public static function callId( $id )
{
return self::whereId( $id ) -> firstOrFail();
}
public function bodies( $language_id = null )
{
}
}
$bodies = Transport_type::callId( 6 ) -> bodies ( 1 ) ;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question