@extends('layouts.AdminMaster') @section('content')

view Staffs

@foreach($staffs as $staff) {!! Form::close() !!} @endforeach
First Name Last Name email Phone Address DOB Gender NIC Emergency Contact Designation Date Joined User Type Status User ID Action
{{ $staff->first_name }} {{ $staff->last_name }} {{ $staff->email }} {{ $staff->phone }} {{ $staff->address }} {{ $staff->dob }} {{ $staff->gender }} {{ $staff->nic }} {{ $staff->emergency_contact }} {{ $staff->designation }} {{ $staff->date_joined }} {{ $staff->type }} {{ $staff->status }} {{ $staff->user_id }} Edit {!! Form::open(array('url' => ['admin/staffs/delete/'.$staff->staff_id], 'method' => 'delete', 'id'=>'deleteform')) !!}
@endsection