Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created July 17, 2021 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/d031842d6544cd40b92fb4e882048035 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/d031842d6544cd40b92fb4e882048035 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Service extends Model
{
use HasFactory;
protected $fillable = [
"user_id", "name", "comments", "default_hourly_rate_per_service",
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment