leadthread / laravel-upload by tylercd100

30
0
2
Package Data
Maintainer Username: tylercd100
Maintainer Contact: tylercd100@gmail.com (Tyler Arbon)
Package Create Date: 2016-07-29
Package Last Update: 2021-12-17
Language: PHP
License: MIT
Last Refreshed: 2024-04-15 15:10:38
Package Statistics
Total Downloads: 30
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

laravel-upload

Latest Version Software License Build Status Scrutinizer Code Quality Code Coverage Dependency Status Total Downloads

Installation

Install via composer - In the terminal:

composer require leadthread/laravel-upload

Now add the following to the providers array in your config/app.php

LeadThread\Upload\Providers\Upload::class

and this to the aliases array in config/app.php

"Upload" => "LeadThread\Upload\Facades\Upload",

Then you will need to run these commands in the terminal in order to copy the config and migration files

php artisan vendor:publish --provider="LeadThread\Upload\Providers\Upload"

Before you run the migration you may want to take a look at config/upload.php and change the table property to a table name that you would like to use. After that run the migration

php artisan migrate

Usage

To save the file to the disk and database:

function upload(Request $request)
{
	$file = $request->file('file');

	//Returns an Eloquent Model for the file
	$model = Upload::create($file);
}

Contributing

Contributions are always welcome!