Edit File: StoreTiming.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class StoreTiming extends Model { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = ['day' , 'from' , 'to' , 'store_id' , 'is_closed']; use HasFactory; protected function asJson($value) { return json_encode($value, JSON_UNESCAPED_UNICODE); } }
Back to File Manager