Files
commander_league_api/app/Model/Format.php
Kevin ANATOLE 0691e5a107 Game formats
- Created the formats tables/migrations
- Created the controller to retrieve the formats
2020-10-31 19:23:04 +00:00

10 lines
180 B
PHP

<?php
namespace App\Model;
class Format extends \Illuminate\Database\Eloquent\Model
{
protected $fillable = ['name'];
protected $hidden = ['created_at', 'updated_at'];
}