@extends('backend.layout') @section('content')
{{ __('Products') . ' (' . $language->name . ' ' . __('Language') . ')' }}
@includeIf('backend.partials.languages')
{{ __('Add Product') }}
@if (session()->has('course_status_warning'))

{{ session()->get('course_status_warning') }}

@endif @if (count($products) == 0)

{{ __('NO PRODUCTS FOUND FOR') .' '. $language->name . '!' }}

@else
@foreach ($products as $product) @endforeach
{{ __('Title') }} {{ __('Price') }} {{ __('Type') }} {{ __('Category') }} {{ __('Status') }} {{ __('Featured') }} {{ __('Actions') }}
{{ $product->title }} {{ $product->current_price }} {{ $product->type }} {{ $product->category }}
@csrf
@csrf
@csrf
@endif
@endsection