add banks, payment purpose and user company tables
This commit is contained in:
18
app/Modules/PaymentPurposeCode/Models/PaymentPurposeCode.php
Normal file
18
app/Modules/PaymentPurposeCode/Models/PaymentPurposeCode.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Modules\PaymentPurposeCode\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Concerns\HasUuids;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $code
|
||||
* @property \Carbon\Carbon $created_at
|
||||
* @property Carbon\Carbon $updated_at
|
||||
*/
|
||||
class PaymentPurposeCode extends Model
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user