mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 06:19:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			254 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			254 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|  | <?php | ||
|  | 
 | ||
|  | namespace App\Models; | ||
|  | 
 | ||
|  | use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
|  | use Illuminate\Database\Eloquent\Model; | ||
|  | 
 | ||
|  | class Locations extends Model | ||
|  | { | ||
|  |     use HasFactory; | ||
|  | 
 | ||
|  |     protected $fillable = ['name']; | ||
|  | 
 | ||
|  |     protected $table = 'locations'; | ||
|  | } |