@extends('admin.master') @section('title', __('Products')) @section('content')
|
{{ __('Name') }} | {{ __('Cover') }} | {{ __('Price') }} | {{ __('Sales') }} | {{ __('Category') }} | {{ __('Active') }} | {{ __('Trending') }} | {{ __('Featured') }} | {{ __('Newest') }} | {{ __('Files') }} | {{ __('Updated at') }} | {{ __('Actions') }} |
---|---|---|---|---|---|---|---|---|---|---|---|---|
id }})">
|
{{ $product->id.' - '.ucfirst($product->name) }} | {{ price($product->price) }} | {{ $product->sales ?? '0' }} | {{ $product->category['name'] }} |
active) checked @endif data-id="{{ $product->id }}" data-status="active" @change="updateStatus($event)">
|
trending) checked @endif data-id="{{ $product->id }}" data-status="trending" @change="updateStatus($event)">
|
featured) checked @endif data-id="{{ $product->id }}" data-status="featured" @change="updateStatus($event)">
|
newest) checked @endif data-id="{{ $product->id }}" data-status="newest" @change="updateStatus($event)">
|
@if($product->file_name || $product->direct_download_link) @else - @endif | {{ $product->updated_at }} |
|