|TreasuryImports newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports newQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports query() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereAccountId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereFileType($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereFilename($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereStatus($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereTotalImported($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereTotalLines($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereUnitId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImports whereUserId($value) * @mixin \Eloquent */ class TreasuryImports extends Model { use HasFactory; protected $table = 'treasury_imports'; protected $guarded = [ 'id', // Add more fields that shouldn't be edited here ]; protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', // Add your casts here (e.g., 'is_active' => 'boolean') ]; // Relationships // Business Logic Methods // Custom Finders // Query Scopes }