develop
Last change
on this file since ea7b12a was ea7b12a, checked in by beratkjufliju <kufliju@…>, 3 years ago |
added files crud in table
|
-
Property mode
set to
100644
|
File size:
523 bytes
|
Rev | Line | |
---|
[24a616f] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | namespace App\Models;
|
---|
| 4 |
|
---|
| 5 | use Illuminate\Database\Eloquent\Model;
|
---|
[ea7b12a] | 6 | use Illuminate\Support\Facades\Storage;
|
---|
[24a616f] | 7 |
|
---|
| 8 | class File extends Model
|
---|
| 9 | {
|
---|
| 10 | protected $table = "files";
|
---|
[ea7b12a] | 11 | protected $fillable = ["name", "location", "document_id"];
|
---|
[24a616f] | 12 |
|
---|
| 13 | public function document()
|
---|
| 14 | {
|
---|
| 15 | return $this->belongsTo(Document::class);
|
---|
| 16 | }
|
---|
[ea7b12a] | 17 |
|
---|
| 18 | public function getSize($location)
|
---|
| 19 | {
|
---|
| 20 | $fileSize = Storage::disk('local')->size($location) / 1024 / 1024;
|
---|
| 21 | $fileSize = round($fileSize, 2);
|
---|
| 22 | return $fileSize;
|
---|
| 23 | }
|
---|
[24a616f] | 24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.