25 lines
386 B
PHP
25 lines
386 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* @mixin IdeHelperQuote
|
|
*/
|
|
class Quote extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
public function request(): void
|
|
{
|
|
// Send the notification
|
|
// If success, add it to the transactions
|
|
}
|
|
|
|
protected $fillable = [
|
|
'quote',
|
|
];
|
|
}
|