@extends("layouts.admin.app") @section("page-title") {{__("consultations")}} @endSection @section("page-nav-title")

{{__("Other Consultations")}}

{{__('Create consultation type')}}
@endsection @section("content") @include("includes.dialog")
@foreach($consultations as $consultation) @endforeach
{{__("ID")}} {{__("consultation Type")}} {{__("consultant name")}} {{__("consultant phone")}} {{__("Status")}} {{__("action")}}
{{$consultation->id}} {{$consultation->consultation_name}} {{$consultation->consultant->full_name}} {{$consultation->consultant->phone_number}}
$consultation->id])}}" method="post" id="delete{{$consultation->id}}" style="display: none" data-swal-title="Delete Property" data-swal-text="{{__("Are Your Sure To Delete ?")}}" data-yes ="{{__("Yes")}}" data-no="{{__("No")}}" data-success-msg="{{__("the consultant has been deleted successfully")}}">@csrf @method("delete")
@endsection @section("scripts") @endsection