Answers for "model specific table name in laravel"

PHP
1

get table name from model laravel

$item = new Item;
$table = $item->getTable();
print_r($table);
Posted by: Guest on October-11-2020
0

Laravel model use specific table

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'my_flights';
}
Posted by: Guest on October-08-2020

Code answers related to "model specific table name in laravel"

Browse Popular Code Answers by Language