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

27 lines
509 B

2 years ago
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class DeliveryManWallet extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $casts = [
'collected_cash' => 'float',
'total_earning' => 'float',
'total_withdrawn' => 'float',
'pending_withdraw' => 'float',
];
protected $fillable = ['delivery_man_id'];
}