mirror of
https://github.com/kevin-DL/commander_league_api.git
synced 2026-01-11 18:44:32 +00:00
- Created the formats tables/migrations - Created the controller to retrieve the formats
10 lines
180 B
PHP
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'];
|
|
}
|