@extends('./layouts.managermaster') @section('title', 'Trainings and staff') @section('content')
TRAININGS AND STAFF
@if(session('success'))
{{session('success')}}
@endif @if(session('error'))
{{session('error')}}
@endif
@foreach($staffs as $staff) @endforeach
Staff name Job title Department Actions
{{$staff->staffname}} {{$staff->jobtitle}} {{$staff->department}}
@endsection