|TreasuryImportLine newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine newQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine query() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereDescription($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereDocument($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereImportId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereImportType($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereIsReconciled($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereLaunchId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereMovementDate($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryImportLine whereValue($value) * @mixin \Eloquent */ class TreasuryImportLine extends Model { use HasFactory; protected $table = 'treasury_import_lines'; 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 }