@extends('layouts.app') @section('title', 'Bandwidth Assigned By ' . $employee->name) @section('page-title', 'Bandwidth Assigned By ' . $employee->name) @section('content')
Assigned By: {{ $employee->name }}
Back
@forelse($logs as $log) @empty @endforelse
ID Customer Log Date Status Approval Created By Actions
{{ $log->id }} @if($log->customer) {{ $log->customer->company_name ? $log->customer->company_name . ' - ' . $log->customer->name : $log->customer->name }} @if($log->customer->email)
{{ $log->customer->email }} @endif @else - @endif
{{ $log->log_date ? $log->log_date->format('M d, Y H:i') : '-' }} {{ ucfirst($log->status) }} {{ ucfirst($log->approval_status) }} {{ $log->creator ? $log->creator->name : '-' }}
No logs found.
@if($logs->hasPages())
{{ $logs->links() }}
@endif
@endsection @section('styles') @endsection