@extends('layouts.master') @section('title', 'Products | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.products')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @if (Session::has('error_delete'))

Can not be deleted

{{ Session::get('error_delete') }}

@endif @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('basic.products center') }} | {{ __('basic.products') }}
{{ __('basic.new') }} {{ __('basic.search filter') }}
{{ __('basic.products') }}
@foreach ($service as $item) @endforeach
{{ __('basic.img') }} {{ __('basic.name') }} {{ __('basic.barcode') }} {{ __('basic.warehouse') }} {{ __('basic.supplier') }} {{ __('basic.sell') }} {{ __('basic.purchasing price') }} {{ __('basic.quantity') }} {{ __('basic.categories') }} {{ __('basic.created at') }} {{ __('basic.handle') }}
{{ $item->name }} {{ $item->barcode }} @if($item->warehouse) {{ $item->warehouse->name }} @endif @if($item->debtor) {{ $item->debtor->company_name }} @endif {{ $item->buy_price }} {{ $item->sell_price }} {{ $item->quantity }} {{ $item->main_cat->name ?? "" }} - {{ date("Y-m-d H:i", strtotime($item->created_at)) }} @if($item->creator) - {{ $item->creator->full_name }} @endif
{{ $service->appends(request()->input())->links() }}
@endsection @section('js') @endsection