<?php
							 | 
						|
								
							 | 
						|
								namespace App\Models;
							 | 
						|
								
							 | 
						|
								use GoldSpecDigital\LaravelEloquentUUID\Database\Eloquent\Model;
							 | 
						|
								
							 | 
						|
								class Bucket extends Model
							 | 
						|
								{
							 | 
						|
								    /**
							 | 
						|
								     * The attributes that are mass assignable.
							 | 
						|
								     *
							 | 
						|
								     * @var array
							 | 
						|
								     */
							 | 
						|
								    protected $fillable = [
							 | 
						|
								        'name',
							 | 
						|
								        'description',
							 | 
						|
								        'path',
							 | 
						|
								    ];
							 | 
						|
								}
							 |