101 lines
4.6 KiB
PHP
101 lines
4.6 KiB
PHP
@extends('layouts.master')
|
|
|
|
@section('css')
|
|
@endsection
|
|
|
|
@section('breadcrumb')
|
|
<div class="col-sm-6">
|
|
<h4 class="page-title text-left">Employees</h4>
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="javascript:void(0);">Home</a></li>
|
|
<li class="breadcrumb-item"><a href="javascript:void(0);">Employees</a></li>
|
|
<li class="breadcrumb-item"><a href="javascript:void(0);">Employees List</a></li>
|
|
|
|
</ol>
|
|
</div>
|
|
@endsection
|
|
@section('button')
|
|
<a href="#addnew" data-toggle="modal" class="btn btn-primary btn-sm btn-flat"><i class="mdi mdi-plus mr-2"></i>Add</a>
|
|
|
|
|
|
@endsection
|
|
|
|
@section('content')
|
|
@if(session('success'))
|
|
<div class="alert alert-success">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@include('includes.flash')
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<table id="datatable-buttons" class="table table-striped table-bordered dt-responsive nowrap" style="border-collapse: collapse; border-spacing: 0; width: 100%;">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th data-priority="1">Employee ID</th>
|
|
<th data-priority="2">Name</th>
|
|
<th data-priority="3">position</th>
|
|
<th data-priority="4">Email</th>
|
|
<th data-priority="6">Member Since</th>
|
|
<th data-priority="7">Actions</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($employees as $employee)
|
|
<tr>
|
|
<td>{{$employee->id}}</td>
|
|
<td>{{$employee->name}}</td>
|
|
<td>{{$employee->role ?? 'N/A'}}</td>
|
|
<td>{{$employee->email}}</td>
|
|
</td>
|
|
<td>{{$employee->created_at}}</td>
|
|
<td>
|
|
<a href="#edit{{$employee->id}}" data-toggle="modal" class="btn btn-success btn-sm edit btn-flat">
|
|
<i class='fa fa-edit'></i> Edit
|
|
</a>
|
|
<a href="#delete{{$employee->id}}" data-toggle="modal" class="btn btn-danger btn-sm delete btn-flat">
|
|
<i class='fa fa-trash'></i> Delete
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> <!-- end col -->
|
|
</div> <!-- end row -->
|
|
|
|
|
|
@foreach( $employees as $employee)
|
|
@include('includes.edit_delete_employee')
|
|
@endforeach
|
|
|
|
@include('includes.add_employee')
|
|
|
|
@endsection
|
|
|
|
|
|
@section('script')
|
|
<!-- Responsive-table-->
|
|
|
|
@endsection |