coinwind/app/Other.php

24 lines
378 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);
}
}