@extends('admin.master') @section('content') @section('title','Training Type List')
@yield('title')
@if(session()->has('success'))
 {{ session()->get('success') }}
@endif @if(session()->has('error'))
 {{ session()->get('error') }}
@endif
{!! $sl=null !!} @foreach($results AS $value) @endforeach
S/L Training Type Name Status Action
{!! ++$sl !!} {!! $value->training_type_name !!} {{ $value->status==2 ? 'Inactive' : 'Active' }}
@endsection