Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
6
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
64ae29a
fastapi_django_main_live
/
routers
/
ai
/
app
/
Models
/
Book.php
kenken999
test
cf75111
8 months ago
raw
Copy download link
history
blame
193 Bytes
<?php
namespace
App
\
Models
;
use
Illuminate
\
Database
\
Eloquent
\
Model
;
class
Book
extends
Model
{
protected
$fillable
= [
'title'
,
'author'
,
'published_at'
,
];
}