mirror of https://github.com/kcal-app/kcal.git
				
				
				
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			538 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			538 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| /**
 | |
|  * @property string name
 | |
|  * @property string unit
 | |
|  * @property float calories
 | |
|  * @property float protein
 | |
|  * @property float fat
 | |
|  * @property float carbohydrates
 | |
|  */
 | |
| class Ingredient extends Model
 | |
| {
 | |
|     use HasFactory;
 | |
| 
 | |
|     /**
 | |
|      * @inheritdoc
 | |
|      */
 | |
|     protected array $fillable = [
 | |
|         'name',
 | |
|         'unit',
 | |
|         'calories',
 | |
|         'protein',
 | |
|         'fat',
 | |
|         'carbohydrates',
 | |
|     ];
 | |
| }
 |