Your ROOT_URL in app.ini is http://167.99.32.63:3000/ but you are visiting http://167.99.32.63/ibrahim/BAGETWEBPANEL/src/branch/master/app/Models/Cuisine_restaurant.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 

19 lines
398 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\Pivot;
class Cuisine_restaurant extends Pivot
{
use HasFactory;
protected $guarder = ['id'];
protected $casts = [
'id'=>'integer',
'cuisine_id'=>'integer',
'restaurant_id'=>'integer'
];
}