Create the first models with migrations for handling invoices.

This commit is contained in:
2024-11-25 17:45:24 +01:00
parent 0a5887d5a8
commit 41e88ac828
10 changed files with 228 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Invoiceitem extends Model
{
use SoftDeletes;
}