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

@foreach ($scholarships as $key => $scholarship) @endforeach
No. Name of Scholarship Manage
{{ $key + 1 }} {{ $scholarship->name_en }}
@include('layouts.footer') @endsection