30 lines
		
	
	
		
			465 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			465 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class Location extends Model
 | 
						|
{
 | 
						|
    protected $table = 'locations';
 | 
						|
 | 
						|
    protected $fillable = [
 | 
						|
        'display_name',
 | 
						|
        'raw_address',
 | 
						|
        'street',
 | 
						|
        'city',
 | 
						|
        'state',
 | 
						|
        'postal',
 | 
						|
        'country',
 | 
						|
        'lat',
 | 
						|
        'lon',
 | 
						|
        'phone',
 | 
						|
        'hours_json',
 | 
						|
    ];
 | 
						|
 | 
						|
    protected $casts = [
 | 
						|
        'lat' => 'float',
 | 
						|
        'lon' => 'float',
 | 
						|
    ];
 | 
						|
}
 |