1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 10:39:08 +00:00
pixelfed/app/Media.php

17 lines
236 B
PHP
Raw Normal View History

2018-04-15 19:26:48 -06:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
2018-05-19 20:59:59 -06:00
use Storage;
2018-04-15 19:26:48 -06:00
class Media extends Model
{
2018-05-19 20:59:59 -06:00
public function url()
{
$path = $this->media_path;
$url = Storage::url($path);
return url($url);
}
2018-04-15 19:26:48 -06:00
}