@extends('layouts.backend') @section('extraCss') @endsection @section('mainContentArea')

Staff List

@foreach ($stafflist as $staff) @endforeach
Name Email Phone Department Store Actions
{{ $staff->name }} {{ empty($staff->email) ? 'N/A' : $staff->email }} {{ empty($staff->phone) ? 'N/A' : $staff->phone }} {{ empty($staff->department) ? 'N/A' : $staff->department }} {{ empty($staff->warehouse->name) ? 'No' : $staff->warehouse->name }} Modify
@php if($stafflist->count() > 0) { @endphp {!! $stafflist->appends(request()->input())->links() !!} @php } @endphp
@endsection @section('extraJs') @endsection