{{-- Export Laporan Excel Pada Laravel

Export Laporan Excel Pada Laravel

EXPORT EXCEL @php $i=1 @endphp @foreach($excel as $e) @endforeach
Nama Deskripsi
{{ $i++ }} {{$e->name}} {{$e->description}}
--}} Import Excel Ke Database Dengan Laravel

Import Excel Ke Database Dengan Laravel

{{-- notifikasi form validasi --}} @if ($errors->has('file')) {{ $errors->first('file') }} @endif {{-- notifikasi sukses --}} @if ($sukses = Session::get('sukses'))
{{ $sukses }}
@endif EXPORT EXCEL @php $i=1 @endphp @if(!empty($excel)) @foreach($excel as $e) @endforeach @endif
Baris Nama Deskripsi
{{ $i++ }} {{$e->name}} {{$e->description}}