PHP code example of panoscape / assets

1. Go to this page and download the library: Download panoscape/assets library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

panoscape / assets example snippets


'providers' => [
    ...
    Panoscape\Assets\AssetsServiceProvider::class,
];

'aliases' => [
    ...
    'App\Asset' => Panoscape\Assets\Asset::class,
];



namespace App;

use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Database\Eloquent\SoftDeletes;
use Panoscape\Assets\OwnAssets;

class User extends Authenticatable
{
    use Notifiable, SoftDeletes, OwnAssets;
}



namespace App;

use Illuminate\Database\Eloquent\Model;
use Panoscape\Assets\HasAssets;

class Article extends Model
{
    use HasAssets;
}

$user->assets();
//or dynamic property
$user->assets;

$model->assets();
//or dynamic property
$model->assets;

//get the owner
$asset->owner();
//check owner's existence
$asset->hasOwner();

//get items of a specific type which use this asset
$asset->itemsOf(App\Article::class);

//get url
$asset->url();

//check file existence
$asset->exists();

//check if this asset is attached to any items
$asset->attached();

//remove the asset's related file
$asset->remove();

//get all assets which are not attached
Asset::getDetached();

//get all assets which have no owner
Asset::getAnonymous();

//get MIME type of the given extension
Asset::getMimeType('jpg');
//get all MIME types of the given extension
Asset::getAllMimeTypse('jpg');

//create asset from request
//the first argument is the key of the file in the request
//the second argument is the folder path(relative to the disk) in which the file will be stored, which if optional
//the third argument is the disk to store in, which by default is 'public'
Asset::createFromRequest('avatar', 'avatars', 'public');

//create asset from storage
//the first argument is the file path relative to the disk
//the second argument is the disk to store in, which by default is 'public'
Asset::createFromStorage('avatars/avatar_927.png', 'public');


//by id
$article->attachAssets(1);
//by model instance
$article->attachAssets($asset);
//with array
$article->attachAssets([1, 2]);
$article->attachAssets([$asset1, $asset2]);

//detach
$article->detachAssets(1);
//detach all
$article->detachAssets([]);

//sync
$article->syncAssets(1);
//detach all
$article->syncAssets([]);
//sync without detaching
$article->syncAssets([1, 2], false);

shell
php artisan vendor:publish --provider="Panoscape\Assets\AssetsServiceProvider" --tag=migrations