<?php namespace App; use Illuminate\Database\Eloquent\Model; class Userprivatelocation extends Model { protected $fillable = [ 'user_id', 'lat', 'lng', 'radius', ]; protected $casts = [ 'created_at' => 'datetime:d.m.Y H:i' ]; protected $table = 'user_privatelocations'; }