You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Media.php

17 lines
236 B
PHTML

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Storage;
class Media extends Model
{
public function url()
{
$path = $this->media_path;
$url = Storage::url($path);
return url($url);
}
}