@extends('layouts.master') @section('title', 'Scholarship Type List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')
@yield('title')


@foreach($scholarshiptype as $key => $new_scholarshiptype) @endforeach
No. Scholarship Type Name
{{ ++$key }} {{ $new_scholarshiptype->scholarship_type_name }}
@include('layouts.footer') @endsection