@extends('admin.layouts.master') @section('title') منتجات @endsection @section('css') @endsection @section('content-header')

منتجات

@endsection @section('content')
@include('admin.messages') @foreach($data as $row) @if(!auth('employee')->check()) @include('admin.packages.deleted') @else @endif @endforeach
# اسم منتج سعر منتج حاله منتج العمليات
{{$loop->index+1}} {{$row->name}} {{$row->price}}
status == "active" ? "checked" : null}} type="checkbox" role="switch" id="flexSwitchCheckDefault{{$row->id}}" onchange="updateStatus(this.checked, {{$row->id}})">
@endsection @section('js') @endsection