@php
$profile = auth()->user()->profile;
@endphp
@extends("seller.profile")
@section('content')
{{--
--}}
# |
Name |
Video |
{{-- File Link | --}}
Price |
Action |
@forelse($mediafiles as $index => $mediafile)
{{ $index + 1 }} |
{{ $mediafile->name }} |
|
{{--
| --}}
${{ number_format($mediafile->price, 2) }} |
add
edit
delete
|
@empty
No any Media Files
|
@endforelse
@endsection