@extends('layouts.app') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
Branch Employee List
@forelse($allBranch as $key => $branch) @php $branch_name = \App\Models\Branch::where(['id' => $branch->branch_id])->pluck('branch_name')->first(); @endphp @php $employee_name = \App\Models\User::where(['id' => $branch->user_id])->pluck('name')->first(); @endphp @empty @endforelse
Sl No Branch Name Employee Name Created Date Action
{{ $loop->index + 1 }}{{ $branch_name }}{{ $employee_name }} {{ $branch->created_at->format('d-m-Y') }}
No record found...
Showing 1 to 3 of 4 results
@endsection