@extends('layouts.master')
@section('title', 'Work orders | Alboosh - Timeless authenticity, born of the desert')
@section('title-topbar', __('basic.work orders'))
@section('css')
@endsection
@section('fixedcontent')
@if (Session::has('success'))
Sent Successfully
{{ Session::get('success') }}
@endif
@endsection
@section('content')
| {{ __('basic.id') }} |
{{ __('basic.name') }} |
{{ __('basic.worker') }} |
{{ __('basic.branch') }} |
{{ __('basic.start date') }} |
{{ __('basic.end date') }} |
{{ __('basic.current expenses') }} |
{{ __('basic.current income') }} |
{{ __('basic.budget') }} |
{{ __('basic.handle') }} |
@foreach ($work_orders as $item)
|
{{ $item->new_id }}
|
{{ $item->name }}
|
{{ $item->branch->name }}
|
{{ $item->worker->full_name }}
|
{{ $item->start_at }}
|
{{ $item->end_at }}
|
{{ $item->current_income }} {{
$item->currency->code }}
|
{{ $item->current_expenses }} {{
$item->currency->code }}
|
{{ $item->budget }} {{
$item->currency->code }}
|
|
@endforeach
@endsection
@section('js')
@endsection