@extends('layouts.master')
@section('css')
@section('title')
{{ __('home.templates') }}
@stop
@endsection
@section('content')
@if(session()->has('success'))
✅ تم بنجاح: {{ session()->get('success') }}
@endif
@if(session()->has('error'))
❌ خطأ: {{ session()->get('error') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
| اسم القالب |
المكونات (المنتجات) |
ملاحظات |
العمليات |
@foreach($templates as $template)
| {{ $template->template_name }} |
@foreach($template->items as $item)
- {{ $item->product->product_name ?? 'غير معروف' }}
@endforeach
|
{{ $template->notes }} |
تعديل
حذف
|
@endforeach
@endsection