@extends('admin.admin_master') @section('title') Student List @endsection @section('content')
@if (session('success'))
Success! {{ Session::get('success') }}
@endif

Student List

@foreach ($students as $key => $row) @endforeach
Sl Name Email Phone Country City Course Plan Photo Action
{{ $key+1 }} {{ $row->name }} {{ $row->email }} {{ $row->phone }} {{ $row->country }} {{ $row->city }} Plan {{ $row->plan }} @if (File::exists($row->image)) @else @endif
@endsection