@php $data = []; $data['title'] = "Manage Placements"; @endphp @include('backend.components.header_link', $data)
@include('backend.components.menu')
@include('backend.components.navbar', $data)
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Select Placement Table
@if($selectedTable)
Showing Data for: {{ ucfirst(str_replace('_', ' ', $selectedTable)) }}
@forelse($data as $item) @empty @endforelse
ID Profile Name Branch Company Category CTC Action
{{ $item->id }} @if($item->profile) Profile @else No Image @endif {{ $item->name }} {{ $item->branch }} {{ $item->company }} {{ $item->category }} {{ $item->ctc }} Edit
@csrf @method('DELETE')
No data found.
@endif
@include('backend.components.footer') @include('backend.components.footer_link')