File "Currency.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Models/Currency.php
File size: 228 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Currency extends Model
{
    use HasFactory;

    protected $guarded = [
        'id',
    ];
}