coinwind/app/Other.php

22 lines
376 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Other extends Model
{
public function setBannerAttribute($pictures)
{
if (is_array($pictures)) {
$this->attributes['banner'] = json_encode($pictures);
}
}
public function getBannerAttribute($pictures)
{
return json_decode($pictures, true);
}
}