@extends('layouts.default') @section('title', 'College List') @section('header-links') @include('includes.headers.colleges') @endsection @section('new_button') add Create college @endsection @section('content')
@foreach($list as $k=>$li) @endforeach @if(count($list) == 0) @endif
College Name Contact Name Contact Mobile Contact Email Action
{{ ucwords($li->name) }} {{ ucwords($li->contact_name) }} {{ $li->mobile }} {{ $li->email }} create
No data
@stop