@extends('panel.master') @section('t') مدیریت سرنخ‌ها @stop @section('content')

مدیریت سرنخ‌ها

@if($sarnakhids2 == "x")

افزودن سرنخ جدید

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

لیست سرنخ‌ها

@foreach($sarnakhids as $val) @endforeach
# نام سرنخ والد وضعیت امتیاز نام انگلیسی تاریخ ایجاد عملیات
{{ $loop->iteration }} {{ $val->Namesarnakh }} {{DB::table('sarnakhids')->where('IdsarnakhId',$val->ParantId)->value('Namesarnakh')?? '-' }} @if($val->Status == 'Parant') اصلی @else زیرمجموعه @endif {{ $val->point }} {{ $val->NamesarnakhEn }} {{ jdate($val->created_at)->format('Y/m/d') }}
@else @foreach($sarnakhids2 as $value2)

ویرایش سرنخ: {{ $value2->Namesarnakh }}

@csrf
بازگشت
@endforeach @endif
@endsection @section('extrajs') @endsection @section('extracss') @endsection