@section('title', '- Your products') @extends('layouts.user-profile') @section('breadcumb') @include('layouts.partials.breadcumb', ['page' => 'Products']) @endsection @section('section-body') @if (empty($articles))

@lang('products.not_found')

@endif @foreach ($articles as $article)
{{ $article->name }}
id") }}" class="title_link">

{{ $article->name }}

Status: {{ ucfirst($article->status) }}

@if($article->service != true)

Quantity Available: {{ $article->stock }}

@endif

Category: @foreach ($article->categories as $categories) @lang("categories.".$categories->category->category."") @endforeach

@if ($article->status == 'expired') @lang('products.expired') @endif @if ($article->stock == 0 && $article->service != true) @lang('products.sold') @endif @if ($article->status != 'expired' && ($article->stock != 0 || $article->service == true) && $article->status != 'deleted') id/edit") }}" class="btn btn-ebit"> Edit Product @endif


@endforeach
{{ $articles->render() }}
{{-- Modal (no se que hace??) --}} @endsection @push('js') @endpush