@extends('layouts.index')
@section('contacts_active')
nav-item active
@endsection
@section('page_title')
Contacts
@endsection
@section('headaddons')
@endsection
@section('pg_name')
Contact Requests
@endsection
@section('content')
@if (count($errors) > 0)
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
| Client Name |
Phone Number |
Project ID |
Time |
@foreach ($allProjects as $project)
| {{ $project->client_name }} |
{{ $project->phone_number }} |
{{ $project->phone_number }} |
{{ $project->created_at }} |
@endforeach
| Client Name |
Phone Number |
Unit ID |
Time |
@foreach ($allUnits as $unit)
| {{ $unit->clientName }} |
{{ $unit->phoneNumber }} |
{{ $unit->unitId }} |
{{ $unit->created_at }} |
@endforeach
@endsection