@extends('layouts.master') @section('title', 'Client Form | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.website form')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('basic.website forms') }}
{{ __('basic.website forms') }}
@foreach ($on_requests as $item) @if ($item->status == 1) @php $text_color = 'not_accepted-color-btn'; $msg = __('basic.send'); @endphp @elseif ($item->status == 2) @php $text_color = 'done-color-btn'; $msg = __('basic.accept'); @endphp @elseif ($item->status == 3) @php $text_color = 'cancel-color-btn'; $msg = __('basic.rejected'); @endphp @endif @role('Super-admin|Operation-manager') @endrole @endforeach
{{ __('basic.id') }} {{ __('basic.code') }} {{ __('basic.phone number') }} {{ __('basic.email') }} {{ __('basic.from destination') }} {{ __('basic.to destination') }} {{ __('basic.from') }} {{ __('basic.to') }} {{ __('basic.status') }} {{ __('basic.worker') }} {{ __('basic.created') }} {{ __('basic.handle') }}
{{ $item->id }} {{ $item->code }} {{ $item->phone_number }} {{ $item->email }} {{ $item->from_destination->name }} {{ $item->to_destination->name }} {{ $item->from }} {{ $item->to }} {{ $msg }} {{ $item->worker->full_name }} {{ $item->created_at }} @role('Super-admin|Operation-manager') @endrole
@endsection @section('js') @endsection