name) . '.xls';
// header("Content-Disposition: attachment; filename=\"$filename\"");
// header("Content-Type: application/vnd.ms-excel");
?>
{{-- --}}
{{ $project->name }}
{!! Html::style('assets/css/app.s.css') !!}
@foreach($features as $key => $feature)
{{ 1 + $key }}. {{ $feature->name }}
| {{ trans('app.description') }} |
| {!! nl2br($feature->description) !!} |
@if ($feature->tasks->count())
| |
| Sub Fitur |
{{ trans('app.description') }} |
@foreach($feature->tasks as $task)
| {{ $task->name }} |
{!! nl2br($task->description) !!} |
@endforeach
@endif
@endforeach
| {{ trans('app.table_no') }} |
{{ trans('feature.name') }} |
{{ trans('feature.price') }} |
@foreach($features as $key => $feature)
| {{ 1 + $key }} |
{{ $feature->name }} |
{{ formatRp($feature->price) }} |
@endforeach
| Total |
{{ formatRp($features->sum('price')) }} |