2019-11-16 10:21:14 +03:00
|
|
|
@extends('layouts.print')
|
|
|
|
|
|
|
|
@section('content')
|
2020-01-17 16:26:08 +03:00
|
|
|
|
|
|
|
<h2>{{ $class->model->name }}</h2>
|
|
|
|
|
|
|
|
{{ setting('company.name') }}
|
|
|
|
|
2020-01-27 22:41:08 +03:00
|
|
|
@if(!empty($class->model->settings->chart))
|
2019-11-16 10:21:14 +03:00
|
|
|
@include($class->views['chart'])
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@include($class->views['content'])
|
|
|
|
@endsection
|