This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Filament\Resources\Admin\ProductResource\RelationManagers; | |
use Filament\Resources\RelationManager\CreateRecord; | |
class CreateMediaRecord extends CreateRecord | |
{ | |
public function getMediaRealPath() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Model Brand.php. | |
<?php | |
namespace App\Models\Admin; | |
use Cviebrock\EloquentSluggable\Sluggable; | |
use Illuminate\Database\Eloquent\Factories\HasFactory; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Support\Str; | |
use Spatie\MediaLibrary\HasMedia; |