Zobrazit příspěvky

Tato sekce Vám umožňuje zobrazit všechny příspěvky tohoto uživatele. Prosím uvědomte si, že můžete vidět příspěvky pouze z oblastí Vám přístupných.


Příspěvky - Wangarad

Stran: 1 ... 25 26 [27]
391
Studium a uplatnění / Re:Práce ve VSHosting
« kdy: 04. 06. 2019, 14:50:25 »
No praskac alebo drbna. nemam insider info. Clovek ktory ta chce vydierat presne vie take informacie ake su v dokumnte ale ok. Kazdopadne mi to nepride ako ferova hra so strany VSHostingu. Ked vedia ze to ide do kytek a pravdepodobne sa k peniazom uz nedostanu tak odstihnut a hotovo. Takto to vyzera akoby si ich chcely drzat do konca za kazdu cenu lebo...

392
Studium a uplatnění / Re:Práce ve VSHosting
« kdy: 03. 06. 2019, 23:57:46 »
To ho akoze bude VSHosting vydierat a bude to ok? Zatoze mu dlzi a chce ist od neho prec?  Ako VSHosting vie o cenach ake si dohodol konkurent?

393
Vývoj / Laravel select v Controller vysvetlenie
« kdy: 29. 05. 2019, 00:42:28 »
Nie je mi jasne ako funguje select v Laravel resp. neviem ako ho spravne pouzit alebo je vela hodin. Ale k veci.
V WindrController je nieco taketo
Kód: [Vybrat]
public function create(Request $request, User $user, CoinpaymentsPaymentService $coinpaymentsPaymentService) {
     $checkstatuswindraw = $user->account->related(Withdrawal::class)->where('status', '0')->first();
         
        if (!empty($checkstatuswindraw))
           $checkstatuswindraw = 'noepty';
                       
        if ($user->id != $request->user()->id)
            abort(404);
   
           
        return view('payments::frontend.pages.withdrawals.create', [
            'account'       => $user->account,
            'enablewindraw' => $checkstatuswindraw,
            'currencies'    => $coinpaymentsPaymentService->getAcceptedCurrencies()
           
        ]);
    }

mna zaujima tento riadok
 $checkstatuswindraw = $user->account->related(Withdrawal::class)->where('status', '0')->first();
konkretnejsie related. Ako to spravit tak aby te related nebol Withdrawal::class ale napriklad table('deposit')?
Na co presne pouzijem ten related?
Ako by som inak v Laravel napisal select * from Withdrawal where status = 0 and  where user = 'admin' ? Ked napisem
$checkstatuswindraw = DB::table('Withdrawal')->where('status', '0')->where('user', 'admin')->first(); hadze mi to 500.
preco?

394
Sítě / Re:SQL unikatne ID v select
« kdy: 29. 05. 2019, 00:34:10 »
subselect ! To je to co som hladal.
Dakujem pekne. Laravel a subselect su kamarati.
Mozte to uzavriet

395
Sítě / Re:SQL unikatne ID v select
« kdy: 28. 05. 2019, 20:42:25 »
Bohuzial v laravel ani jedno nesplnilo funkciu  :(

396
Sítě / SQL unikatne ID v select
« kdy: 28. 05. 2019, 11:49:47 »
Dobry den.
Mam otazku ci je mozne len pomocov SQL select fitrovat unikatne ID.
Priklad :
Kód: [Vybrat]
  $bests_user = User::where('status', User::STATUS_COMPLETED)
            ->with('account.user', 'money')
            ->where('cash','>','1500')
            ->orderBy('cash', 'desc')
            ->limit(5)
            ->get();

co mi vracia tabulku v style
1 - Janko - 2000
2 - Janko - 1980
3- Fero - 1765
4- Miso - 1587
5 - Janko - 1512

Je mozne upravit SQL tak aby mi to vzdy vracalo account len raz a len s navysov hodnotov? Teda
1- Janko - 2000
2 - Fero - 1765
3- Miso - 1587
4- Karol - 1555
5- Peter - 1531

?

397
Vývoj / Javascript autoscroll pre div
« kdy: 28. 05. 2019, 11:26:06 »
Dobry den.
Potreboval by som poradit ako spravit autoscroll len pre div.Teda aby sa obsah pohyboval hore a dole dookola.
Nemam vsak az take skusenosti tak by som sa rad poradil, resp. budem vdacny aj za omacku "je to preto lebo". V kode mam toto

Kód: [Vybrat]
//scroll to bottom
setInterval(function(){

    //time to scroll to bottom
    $("html, body").animate({ scrollTop: $(document).height() }, 1000);

    //scroll to top
    setTimeout(function() {
       $('html, body').animate({scrollTop:0}, 8000);
    },2000);//call every 2000 miliseconds

},500);
v html
Kód: [Vybrat]
    <ul class="list-group list-group-flush">
                            @foreach($games as $game)
                                <li class="list-group-item d-md-flex justify-content-between align-items-center">
                                    <div>
                                        <h5>{{ __('app.game_' . class_basename(get_class($game->gameable))) }}</h5>
                                        <p class="card-text mb-1">{{ $game->gameable->result }}</p>
                                        <p class="card-text">
                                            <small class="text-muted">
                                                {{ __('Played by') }}
                                                <a href="{{ route('frontend.users.show', $game->account->user) }}">{{ $game->account->user->name }}</a>
                                                {{ $game->created_at->diffForHumans() }}
                                            </small>
                                        </p>
                                    </div>
                                    <div class="mt-2 mt-md-0">
                                        <span class="badge badge-primary badge-pill p-2">
                                            {{ __('Bet :x', ['x' => $game->_bet]) }}
                                        </span>
                                        <span class="badge badge-primary badge-pill p-2">
                                            {{ __('Win :x', ['x' => $game->_win]) }}
                                        </span>
                                    </div>
                                </li>
                            @endforeach
                        </ul>

Skusal som modifikovat script tak ze som namiesto body volal list-group-item d-md-flex justify-content-between align-items-center ale popravde to bola chyba a netusim uplne ako s tym pohnut.

398
Vývoj / Re:Laravel - problem s prekladom
« kdy: 24. 05. 2019, 14:35:50 »
Nie v tom to nie je. Ostatne maju __ a je to ok.

399
Vývoj / Laravel - problém s překladem
« kdy: 24. 05. 2019, 12:55:15 »
Dobry den.

Mam problem s Laravelom. Pouzivam jazykove mutacie ktore tam idu skrz Json. Teda mam zlozky sk,cz,en...
v kode je
Kód: [Vybrat]
  <a href="{{ route('register') }}" class="btn btn-primary">{{ __('Sign up') }}</a>v subore sk.json
Kód: [Vybrat]
    "Log in": "Prihláste sa",
    "Sign up": "Zaregistrujte sa",
"My profile": "Môj profil",


Vymazal som cache ale nechce mi to zmenit sign up na zaregistruj sa ked zmenim jazyk a este par prekladov. Vedel by niekto poradit?

Stran: 1 ... 25 26 [27]