@extends('adminlte::page') @section('title', 'Sipariş Ver') @section('content')

Sipariş Ver

Hangi sipariş türünü vermek istiyorsunuz?
@foreach($templates as $template) @php $colors = [ 'daily' => ['bg' => '#27ae60', 'icon' => 'fa-sun', 'label' => 'Günlük'], 'weekly' => ['bg' => '#2980b9', 'icon' => 'fa-calendar-week', 'label' => 'Haftalık'], 'manual' => ['bg' => '#8e44ad', 'icon' => 'fa-edit', 'label' => 'Manuel'], ]; $c = $colors[$template->type] ?? ['bg' => '#555', 'icon' => 'fa-box', 'label' => $template->type]; @endphp @endforeach
@endsection