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/commit/5502e10312f1346e86a7121a4cdd08e66c54c696/app/Models/Expense.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 

33 lines
718 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Expense extends Model
{
use HasFactory;
protected $casts = [
'id' => 'integer',
'order_id' => 'integer',
'restaurant_id' => 'integer',
'amount' => 'float',
'created_at' => 'datetime:Y-m-d H:i:s',
];
public function restaurant()
{
return $this->belongsTo(Restaurant::class,'restaurant_id');
}
public function order()
{
return $this->belongsTo(Order::class, 'order_id');
}
public function delivery_man()
{
return $this->belongsTo(DeliveryMan::class,'delivery_man_id');
}
}