@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Maintenance System

@if(Session::has('message'))

{{ Session::get('message') }}

@endif

Technician List

@foreach($tec as $tec) @endforeach
Code Technician Name
{{ $tec->code }} {{ $tec->name }}

@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop