Skip to content

Associating Media Files With Laravel’s Eloquent Models

Laravel, currently the most popular PHP framework, offers databases an efficient, well-written Active Record implementation, called the Eloquent Object-Relational Mapper (ORM). Specifically, Eloquent maps a database table to an Eloquent model along with fluent methods and expressions for querying and modifying the database’s records.

Given that you as web developers routinely and frequently upload, download, and transform media files, being able to efficiently associate them with your Laravel Eloquent models saves time and resources. This tutorial describes that process, step by step, with code examples.

  1. Install Composer and PHP on your development or production machine and then run this command:

    composer create-project --prefer-dist laravel/laravel project
    
  2. Go to the project directory and rename the env.example file to .env.

  3. Run the project with the command php artisan serve.

Your Laravel project is now up and running.

  1. Install Cloudinary’s Laravel SDK:

    composer require cloudinary-labs/cloudinary-laravel
    

    Note: Be sure to follow the steps in the #Installation section. Publish the configuration file and add your Cloudinary credentials to the .env file of your app.

  2. Publish the migration file in Cloudinary’s Laravel SDK with this command:

    php artisan vendor:publish --provider="CloudinaryLabs\CloudinaryLaravel\CloudinaryServiceProvider" --tag="cloudinary-laravel-migration"
    
  3. Run php artisan migrate to create the required media table in your database. Verify that the table is in place afterwards.

    Before uploading files to Cloudinary, sign up for a free Cloudinary account, log in, and note your cloud name and API keys from the dashboard.

media library

Follow the two steps below to attach media to a webpage, which can accept as many as you desire as thumbnails or as files. Follow these two steps:

  1. Create with Laravel migrations a pages table with two fields, id and body, in your database.

  2. Create the Page model that maps to the pages database table:

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Page extends Model
{

    /**
    * The table associated with the model.
    *
    * @var string
    */
    protected $table = 'pages';
}

Next, import the CloudinaryLabs\CloudinaryLaravel\MediaAlly trait into your model so that you can attach media files to the Eloquent model:

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use CloudinaryLabs\CloudinaryLaravel\MediaAlly;

class Page extends Model
{
    use MediaAlly;

    ...
}
Code language: HTML, XML (xml)

App\Models\Page.php

You can now attach media files to the Page model in your Laravel controller. Below are three use cases. The first two assume that you’re uploading the files as attachments for the first time

Create a page and then attach files to it:

...
$page = Page::create($this->request->input());
$page->attachMedia($file);   // Example of $file is $request->file('file');
...
Code language: PHP (php)

To verify, check the media table in your database for a new record that looks like this:

media table

Fetch an existing page and attach media files to it:

...
$page = Page::find(2);
$page->attachMedia($file);   // Example of $file is $request->file('file');
...
Code language: PHP (php)

In this instance, you’ve already uploaded to Cloudinary or another cloud storage the media files to be attached to a page. Call the attachRemoteMedia method:

...
$page = Page::create($this->request->input());
$page->attachRemoteMedia($existingRemoteUrl); 
...
Code language: PHP (php)
...
$page = Page::find(2);
$page->attachRemoteMedia($existingRemoteUrl);  
...
Code language: PHP (php)

You can retrieve all the files you’ve attached to the Page record, or just the first or last file.

To retrieve all the files that are attached to the Page record:

...
$filesBelongingToSecondPage = Page::find(2)->fetchAllMedia();
...
Code language: PHP (php)

To retrieve the first file that’s attached to the Page record:

...
$fileBelongingToSecondPage = Page::find(2)->fetchFirstMedia();
...
Code language: PHP (php)

To retrieve the last file that’s attached to the Page record:

...
$fileBelongingToSecondPage = Page::find(2)->fetchLastMedia();
...
Code language: PHP (php)

To delete all the files you’ve attached to the Page record:

...
$page = Page::find(2);
$page->detachMedia();
...
Code language: PHP (php)

Uploading and attaching files barely scratches the surface of media management. Cloudinary helps you administer the entire spectrum of your media’s lifecycle, end to end, from upload and transformation to optimization and delivery. Do check it out.

Back to top

Featured Post