Example #1
0
 public function GetSlugAttribute()
 {
     if (env('IMAGE_GET') == 'local') {
         $files = \File::allFiles(storage_path('app/accountancy/' . $this->id));
         return implode('|', $files);
     } else {
         $files = Photos::where('slug', 'like', 'accountancy%')->where('photo_id', $this->id)->get();
         return $files;
     }
 }