Files
laravel-backend/app/Repositories/Address.php
Joris Slagter df155bb13d
Some checks failed
continuous-integration/drone/push Build is failing
Initial Laravel API import
- Complete GGZ Ecademy Laravel backend application
- RESTful API for learning products, members, filters
- Authentication and authorization system
- Database migrations and seeders
- Custom CRUD generator commands
- Email notification system
- Integration with frontend applications
2025-12-02 17:40:21 +01:00

16 lines
244 B
PHP

<?php
namespace App\Repositories;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Model;
class Address extends Model
{
use SoftDeletes;
protected $dates = ['deleted_at'];
protected $guarded = ['id'];
}