@extends('projects.base')
@section('content')
{{implode(PHP_EOL, $project->git)}}
{{json_encode($project->composer, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)}}
@foreach ($project->config as $config)
{{$config}}
@endforeach
@if ($project->controllers !== null and count((array) $project->controllers) > 0)
@foreach ($project->controllers as $path => $controller)
{{$controller}}
@endforeach
@endif
@if ($project->services !== null and count((array) $project->services) > 0)
@foreach ($project->services as $path => $service)
{{$path}}
{{json_encode($service, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)}}
@endforeach
@endif
@if ($project->routes !== null and count((array) $project->routes) > 0)
@foreach ($project->routes as $path => $routes)
@foreach ($routes as $route)
{{$route}}
@endforeach
@endforeach
@endif
@if ($project->views !== null and count((array) $project->views) > 0)
@foreach ($project->views as $path => $view)
{{$view}}
@endforeach
@endif
@endsection