[ ks ]
[ ks::admin ]
    @php $links = [ '#fa fa-tachometer-alt # Dashboard ' => route('cms.dashboard'), '#fa fa-file # Stranice' => [ 'Sve stranice' => route('cms.static-page.index'), 'Nova stranica' => route('cms.static-page.create'), ], '#fas fa-newspaper # Blog' => [ 'Kategorije' => route('cms.blog.category.index'), 'Autori' => route('cms.blog.author.index'), 'Objave' => route('cms.blog.post.index'), ], '#fas fa-child # Upisi' => route('cms.company_bought_package.index'), '#fas fa-child # B2C Upisi' => [ 'Licence' => route('cms.company_bought_package.b2c.index'), 'Pojedinačni' => route('cms.purchased_courses.index'), 'Besplatni' => route('cms.purchased_courses.index_besplatni'), ], '#far fa-money-bill-alt # Narudžbine' => route('cms.orders.index'), '#far fa-money-bill-alt # Plaćanja' => [ 'Mesečni iznos' => route('cms.invoice-payment.monthly_payments', date('Y')), 'Sve uplate' => route('cms.invoice-payment.index'), 'Iznosi za isplatu' => route('cms.month_payments.get'), // 'Generiši račune u zip' => '#', ], // "#fa fa-user # Statistika uplata" => [ // 'Uplate po vendorima' => route('cms.payments.vendors'), // 'Mesečne uplate po vendorima' => '#', // 'Uplate po predavaču' => route('cms.payments.instructors') // ], '#far fa-money-bill-alt # Zarade Vendora' => route('cms.vendor-earnings.index'), '#fa fa-user-graduate # B2C' => [ '#fa fa-building # Kompanija' => route('cms.company.show', ['company' => App\Models\Company::where("name", 'B2C')->first()->id]), '#fa fa-users # Korisnici' => route('cms.company.show_employees', ['company' => App\Models\Company::where("name", 'B2C')->first()->id]), ], '#fa fa-user # Korisnici' => route('cms.user.index'), '#fa fa-building # Kompanije' => [ 'Sve kompanije' => route('cms.company.index'), 'Nova kompanija' => route('cms.company.create'), 'Grupe' => route('cms.company-sector.index') ], '#fa fa-cubes # Subscribe' => route('cms.subscribe.index'), '#fa fa-cubes # Paket Kurseva' => [ 'Pregled' => route('cms.package.index') ], '#fa fa-money-bill # Kategorije cena' => [ 'Pregled' => route('cms.price_category.index'), 'Unos' => route('cms.price_category.create') ], '#fas fa-newspaper # Header text' => [ 'Pregled' => route('cms.header_text.index'), 'Unos' => route('cms.header_text.create') ], '#fa fa-desktop # Kursevi' => [ 'Svi kursevi' => route('cms.course.index'), 'Novi kurs' => route('cms.course.create'), 'Kategorije' => route('cms.course-category.index'), ], '#fa fa-book # Lekcije' => [ 'Predavanja' => route('cms.lesson.index', 'lecture'), 'Vežbe' => route('cms.lesson.index', 'exercise'), 'Testovi' => [ 'Testovi' => route('cms.lesson.index', 'test'), 'Nivoi pitanja' => route('cms.question-level.index') ], 'Zadaci' => route('cms.lesson.index', 'homework'), 'Lekcije sa starim linkom' => route('cms.lessons_with_old_link'), ], '#fas fa-podcast # Podkasti' => route('cms.lesson.index', 'podcast'), '#fa fa-star # Ocene' => [ 'Ocene kurseva' => route('cms.course-review.index'), 'Po kompanijama' => route('cms.course-review.reviews_by_company.index'), 'Ocene predavača' => route('cms.instrctor-reviews.index'), ], ]; $links['#fas fa-tags# Akcije'] = [ 'Paketi' => route('cms.sales.index'), 'Šifarnik fiksnih' => route('cms.sales-sale.index'), 'Šifarnik po licencama' => route('cms.licences-sale.index'), 'Šifarnik po tipu pretplate' => route('cms.subscription-type-sale.index'), ]; $links['#fa fa-cogs# Sistem'] = [ 'Front Landing' => route('cms.front_landing'), 'Notifikacije' => route('cms.notifications.to_user'), 'CMS Uloge' => route('cms.cms-user-role.index'), 'Uloge korisnika' => route('cms.lms-user-role.index'), 'Dostignuća' => route('cms.lms-user-achievement.index'), 'Bedževi' => route('cms.badge.index'), 'Demo' => route('cms.demo.index'), 'PDV' => route('cms.pdv.index'), '#fas fa-cogs # Podešavanja' => route('cms.system_settings.edit', ['system_settings' => 1]), ]; $links['#fa fa-file-import# Importi'] = [ 'Kursevi' => route('cms.import.courses.index'), 'Predavanja' => route('cms.import.lectures.index'), 'Pitanja' => route('cms.import.quizzes.index'), 'Zadaci' => route('cms.import.homeworks.index'), 'Korisnici' => route('cms.import.users.index'), 'Utisci' => route('cms.import.impressions.index'), 'Upisi' => route('cms.import.enrollments.index'), 'Racuni' => route('cms.import.bills.index') ]; $links['#fa fa-tasks # Akcije korisnika'] = [ 'Osnovne akcije' => route('cms.actions.index'), 'Akcije po kompanijama' => route('cms.company-actions'), ]; // '#fas fa-bell# Obaveštenja' => [ // 'Akcije' => route('cms.notifications.actions'), // 'Automatska obaveštenja' => route('cms.notifications.index'), // ], @endphp