@extends('layouts.admin.show') @section('title')دراسة الحالة@endsection @section('content') @include('includes.admin.header' , ['label_name' => 'دراسة الحالة' ])
@if (session('success'))
{{ session('success') }}
@endif
@foreach ($data as $item) @endforeach
# ترميز الدراسة الاسم رقم الهاتف تاريخ الدراسة الحالة الإجراء
{{$item->id}} {{$item->custom_id}} {{$item->name}} {{$item->phone}} {{ date('Y-m-d', strtotime($item->created_case_date)) }}
@endsection